Skip to content

Commit 4087244

Browse files
Fix goreleaser issue:
During the goreleaser release process in CI getting this error: ERROR: failed to build: Attestation is not supported for the docker driver. The hope is that setting up docker buildx explicitly will get a version that will work properly. Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
1 parent cf76e2c commit 4087244

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ jobs:
2626
go-version: "${{ env.GO_VERSION }}"
2727
cache: true
2828

29+
- name: Set up QEMU
30+
uses: docker/setup-qemu-action@v3
31+
32+
- name: Set up Docker Buildx
33+
uses: docker/setup-buildx-action@v3
34+
2935
- name: Build and push image
3036
run: make image-build-push
3137
env:

0 commit comments

Comments
 (0)