Skip to content

Commit 63efec0

Browse files
authored
fix: Add missing step ID for setup-go in release workflow (#33)
GOVERSION env var was empty because the setup-go step had no id, causing GoReleaser ldflags to fail and produce a release with 0 assets.
1 parent 91d9920 commit 63efec0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818

19-
- uses: actions/setup-go@v5
19+
- id: setup-go
20+
uses: actions/setup-go@v5
2021
with:
2122
go-version-file: go.mod
2223

0 commit comments

Comments
 (0)