From e27456b8f8d603a323b71bd636ab858c7534cd27 Mon Sep 17 00:00:00 2001 From: Kevin McConnell Date: Fri, 23 Jan 2026 14:16:46 +0000 Subject: [PATCH] Include arm64 build in Docker workflow --- .github/workflows/publish-image.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index bbd1eb22a..d89381607 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -34,6 +34,9 @@ jobs: - runner: ubuntu-latest platform: linux/amd64 arch: amd64 + - runner: ubuntu-24.04-arm + platform: linux/arm64 + arch: arm64 env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} @@ -170,11 +173,13 @@ jobs: docker buildx imagetools create \ --tag "$tag" \ --annotation "index:org.opencontainers.image.description=${IMAGE_DESCRIPTION}" \ - "${src_tag}-amd64" + "${src_tag}-amd64" \ + "${src_tag}-arm64" else docker buildx imagetools create \ --tag "$tag" \ - "${src_tag}-amd64" + "${src_tag}-amd64" \ + "${src_tag}-arm64" fi done <<< "$tags"