Skip to content

Commit 3dca571

Browse files
committed
fix(release): use GoReleaser v2 to match config version
The .goreleaser.yaml config uses version: 2, but the workflow was installing GoReleaser v1.26.2 which only supports version: 1 configs. Changed from 'version: latest' to 'version: v2' to ensure compatibility.
1 parent 49687af commit 3dca571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Run GoReleaser
3232
uses: goreleaser/goreleaser-action@v5
3333
with:
34-
version: latest
34+
version: v2
3535
args: release --clean
3636
env:
3737
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}

0 commit comments

Comments
 (0)