Skip to content

Commit 00c5116

Browse files
authored
fix: Remove alternative image architectures until we virtualize (coder#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.
1 parent 0d93e9b commit 00c5116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
103103
# build and (maybe) push Docker images for each architecture
104104
images=()
105-
for arch in amd64 armv7 arm64; do
105+
for arch in amd64; do
106106
img="$(
107107
./scripts/build_docker.sh \
108108
${{ (!github.event.inputs.dry_run && !github.event.inputs.snapshot) && '--push' || '' }} \

0 commit comments

Comments
 (0)