From 8380fdc07e3eef674ef22e59b075a8ff472cb488 Mon Sep 17 00:00:00 2001 From: Valera Satsura Date: Sat, 11 Jul 2026 15:39:54 +0300 Subject: [PATCH] Publish the image for arm64 as well as amd64 --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0fe4696..18fd4d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,10 +33,14 @@ jobs: type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}} type=raw,value=latest,enable={{is_default_branch}} + # arm64 as well as amd64: CI runners are amd64, but developers run the + # same image locally and Apple Silicon has no amd64 fallback here. + - uses: docker/setup-qemu-action@v3 - uses: docker/build-push-action@v6 with: context: . push: true + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha