From 75f4f23211500f8ef75757a733de38f0212f7233 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Mon, 1 Aug 2022 13:14:53 +0000 Subject: [PATCH] fix: Remove alternative image architectures until we virtualize With the addition of a command being executed inside the Docker build, we could no longer build non-amd64 images on amd64. They will be added back, but to allow for releases this temporarily removes them. --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c767cc908032e..92d9b881a4bbe 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -102,7 +102,7 @@ jobs: # build and (maybe) push Docker images for each architecture images=() - for arch in amd64 armv7 arm64; do + for arch in amd64; do img="$( ./scripts/build_docker.sh \ ${{ (!github.event.inputs.dry_run && !github.event.inputs.snapshot) && '--push' || '' }} \