Skip to content

Commit

Permalink
Fix goreleaser bug (#460)
Browse files Browse the repository at this point in the history
The fix is to specify explicitly a goreleaser version of at least 2.
This should not be necessary in theory, but seems to be in
practice.
  • Loading branch information
johnboyes authored Jun 22, 2024
1 parent 296f5eb commit 35df72e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github_tag_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:
go-version: '1.22.4'
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6.0.0
uses: goreleaser/goreleaser-action@v6
with:
version: latest
version: '~> v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 35df72e

Please sign in to comment.