Skip to content

Commit 18f1c6f

Browse files
committed
fix: use built-in GITHUB_TOKEN for GoReleaser releases
The custom GORELEASER_GITHUB_TOKEN PAT had expired, causing 401 errors during changelog generation. Switch to the built-in GITHUB_TOKEN which is automatically provided by GitHub Actions and never expires.
1 parent 0538bbc commit 18f1c6f

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
@@ -35,6 +35,6 @@ jobs:
3535
version: "~> v2"
3636
args: release --clean
3737
env:
38-
GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }}
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
4040
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}

0 commit comments

Comments
 (0)