Skip to content

Commit 70d56e1

Browse files
authored
Fix goreleaser issue: (#491)
## Description 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. Fixes: # ## How Has This Been Tested? ## How are existing users impacted? What migration steps/scripts do we need? ## Checklist: I have: - [ ] updated the documentation and/or roadmap (if required) - [ ] added unit or e2e tests - [ ] provided instructions on how to upgrade
2 parents cf76e2c + 4087244 commit 70d56e1

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)