We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77986d3 commit f58a873Copy full SHA for f58a873
1 file changed
.circleci/config.yml
@@ -109,6 +109,11 @@ jobs:
109
name: docker login
110
command: |
111
docker login -u _json_key -p "$(echo $GCP_ARTIFACTREADWRITE_JSON_KEY | base64 -d)" us-docker.pkg.dev
112
+ # Remote Docker must emulate non-native platforms for GoReleaser's buildx targets (linux/arm64, linux/arm/v7); without binfmt.
113
+ - run:
114
+ name: Enable multi-arch emulation on remote Docker (QEMU binfmt)
115
+ command: |
116
+ docker run --rm --privileged tonistiigi/binfmt:latest --install all
117
- run: goreleaser
118
119
workflows:
0 commit comments