From fd95f8d2bd46505f77e6ef34b73d3fd3b4191655 Mon Sep 17 00:00:00 2001 From: Zach Gollwitzer Date: Fri, 21 Feb 2025 17:12:06 -0500 Subject: [PATCH] Drop linux/arm/v7 support linux/arm/v7 is not compatible with the latest Tailwind package + takes a significant amount of time when using buildx. Most Raspberry Pi OS now run on 64 bit ARM architecture, so we should still have significant coverage with linux/amd + linux/arm builds. Signed-off-by: Zach Gollwitzer --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1b430a63..86ba83cf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -67,7 +67,7 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - platforms: ${{ startsWith(github.ref, 'refs/tags/v') && 'linux/amd64,linux/arm64,linux/arm/v7' || 'linux/amd64,linux/arm64' }} + platforms: 'linux/amd64,linux/arm64' cache-from: type=gha cache-to: type=gha,mode=max provenance: false