Skip to content

Commit e5c11bf

Browse files
committed
Add Go Setup
1 parent 11dcf50 commit e5c11bf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
push:
77
tags:
88
- '[0-9]+\.[0-9]+\.[0-9]+'
9+
env:
10+
GO_VER: 1.17.3
911
permissions:
1012
contents: write
1113
jobs:
@@ -15,6 +17,10 @@ jobs:
1517
steps:
1618
- name: Checkout Code
1719
uses: actions/checkout@v2
20+
- name: Install Go
21+
uses: actions/setup-go@v2
22+
with:
23+
go-version: ${{ env.GOVER }}
1824
- name: Create Binaries
1925
run: make release
2026
- name: Parse Tag

0 commit comments

Comments
 (0)