Skip to content

Commit 1417969

Browse files
committedMar 17, 2022
Add go setup
1 parent cef1a21 commit 1417969

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎.github/workflows/default.yaml

+7-1
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,16 @@ jobs:
2222
needs:
2323
- gotest
2424
steps:
25-
- uses: actions/checkout@v2
25+
- name: checkout
26+
uses: actions/checkout@v2
2627
if: startsWith(github.ref, 'refs/tags/')
2728
with:
2829
fetch-depth: 0
30+
- name: go
31+
uses: actions/setup-go@v2
32+
if: startsWith(github.ref, 'refs/tags/')
33+
with:
34+
go-version: 1.18
2935
- uses: goreleaser/goreleaser-action@v2
3036
if: startsWith(github.ref, 'refs/tags/')
3137
with:

0 commit comments

Comments
 (0)
Please sign in to comment.