Skip to content

Commit

Permalink
Fix goreleaser bug
Browse files Browse the repository at this point in the history
The fix is to specify explicitly that the version must be at least 2.  This should not be necessary in theory, but in practice it seems to be necessary.
  • Loading branch information
johnboyes committed Jun 22, 2024
1 parent 296f5eb commit 28c3c51
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 28c3c51

Please sign in to comment.