From fc8ca04c05b7eeed89c39626cd393983d55317ae Mon Sep 17 00:00:00 2001 From: "Stanko K.R." Date: Tue, 2 Dec 2025 18:59:40 +0100 Subject: [PATCH] Disable ARM image builds --- .github/workflows/publish-image.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index 8605e21ae..4970ef182 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -34,9 +34,6 @@ 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 }} @@ -173,13 +170,11 @@ jobs: docker buildx imagetools create \ --tag "$tag" \ --annotation "index:org.opencontainers.image.description=${IMAGE_DESCRIPTION}" \ - "${src_tag}-amd64" \ - "${src_tag}-arm64" + "${src_tag}-amd64" else docker buildx imagetools create \ --tag "$tag" \ - "${src_tag}-amd64" \ - "${src_tag}-arm64" + "${src_tag}-amd64" fi done <<< "$tags"