mirror of
https://github.com/coder/coder.git
synced 2026-09-22 13:10:21 +08:00
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:
@@ -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' || '' }} \
|
||||
|
||||
Reference in New Issue
Block a user