From 75372ddf7e345b4931d03393c8b781f1985bc836 Mon Sep 17 00:00:00 2001 From: jmug Date: Wed, 17 Jun 2026 21:58:56 -0700 Subject: [PATCH] chore: Only build amd64 images, specify package write perm explicitly. --- .github/workflows/docker.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5728ca36..4d5464fe 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -14,13 +14,14 @@ on: jobs: publish: runs-on: ubuntu-latest + permissions: + contents: read + packages: write steps: - name: Checkout uses: actions/checkout@v4 with: submodules: "recursive" - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Resolve registry host @@ -49,7 +50,7 @@ jobs: with: context: . push: ${{ github.event_name == 'release' }} - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 tags: ${{ steps.meta.outputs.tags }} annotations: ${{ steps.meta.outputs.annotations }} labels: ${{ steps.meta.outputs.labels }}