Skip to content

Commit 36d4d98

Browse files
authored
BUILD: GoReleaser add Docker Buildx setup to release workflow (#4103)
GoReleaser v2's `dockers_v2` adds `--attest=type=sbom` by default, which requires the docker-container driver. Without the setup-buildx-action step, the default docker driver was used, causing "Attestation is not supported for the docker driver" errors. Fixes #4102
1 parent 6d78ec3 commit 36d4d98

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/release_draft.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
- name: Set up QEMU
2020
uses: docker/setup-qemu-action@v3
2121

22+
- name: Set up Docker Buildx
23+
uses: docker/setup-buildx-action@v3
24+
2225
- name: Checkout repo
2326
uses: actions/checkout@v6
2427
with:

0 commit comments

Comments
 (0)