fix: Remove alternative image architectures until we virtualize (#3336)

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.
This commit is contained in:
Kyle Carberry
2022-08-01 08:37:37 -05:00
committed by GitHub
parent 0d93e9bde1
commit 00c5116a2e
+1 -1
View File
@@ -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' || '' }} \