From 51f271eee80ea0facd9bd0caf5fcffbe15cdfa8b Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Sun, 3 Nov 2024 17:07:46 +0900 Subject: [PATCH] Try other platforms in Docker build --- tools/docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/docker.sh b/tools/docker.sh index dfd02b9..a6bb2e3 100755 --- a/tools/docker.sh +++ b/tools/docker.sh @@ -4,7 +4,7 @@ set -e for tag in latest $(git tag --points-at | sed s/^v//); do docker buildx build \ - --platform linux/amd64,linux/arm64,linux/riscv64 \ + --platform linux/386,linux/amd64,linux/arm,linux/arm64,windows/amd64 \ --tag raviqqe/muffet:$tag \ --push \ .