Skip to content

Commit

Permalink
fix go version for releases (#351)
Browse files Browse the repository at this point in the history
Without quotes, the go version is interpreted as a number, so version
1.20 becomes 1.2. This needs to be quotes to preserve the minor version
(20).
  • Loading branch information
pgier authored Jan 25, 2024
1 parent 749565a commit 73d8dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: '1.20'

- name: Import GPG key
id: import_gpg
Expand Down

0 comments on commit 73d8dc9

Please sign in to comment.