From 83cca3fdcac5a0e048c8f4ab0fa020f47c28f848 Mon Sep 17 00:00:00 2001 From: Janik Besendorf Date: Tue, 18 Aug 2026 13:20:19 +0200 Subject: [PATCH] Build Docker images for ARM64 --- .github/workflows/publish-release-docker.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish-release-docker.yml b/.github/workflows/publish-release-docker.yml index eddca22..b3fde3a 100644 --- a/.github/workflows/publish-release-docker.yml +++ b/.github/workflows/publish-release-docker.yml @@ -59,6 +59,9 @@ jobs: type=raw,enable=${{ github.ref_type == 'tag' }},value=${{ github.ref_name }},suffix=${{ matrix.platform.tag-suffix }} type=sha,suffix=${{ matrix.platform.tag-suffix }} type=sha,format=long,suffix=${{ matrix.platform.tag-suffix }} + # Register emulators so Buildx can build the ARM64 images on the AMD64 runner. + - name: Set up QEMU + uses: docker/setup-qemu-action@v4 # This step sets up some additional capabilities to generate the provenance and sbom attestations - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 @@ -71,6 +74,7 @@ jobs: with: file: ${{ matrix.platform.dockerfile }} context: . + platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}