Skip to content

Commit

Permalink
Add specific go-version to releas job (#51)
Browse files Browse the repository at this point in the history
We've added github action config (#50), but it uses default setup-go action, which uses go version 1.10. We need later version of golang.
  • Loading branch information
btromanova committed Oct 3, 2019
1 parent bc39594 commit 1b68622
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
uses: actions/checkout@master
- name: Set up Golang
uses: actions/setup-go@master
with:
go-version: '1.12'
- name: Do release
uses: goreleaser/goreleaser-action@master
with:
Expand Down

0 comments on commit 1b68622

Please sign in to comment.