Skip to content

Commit

Permalink
Merge pull request #18 from pburgisser/fix_go_version
Browse files Browse the repository at this point in the history
fix: setup-go for v1.16
  • Loading branch information
Lucretius authored Oct 12, 2021
2 parents 0003c4d + e24783f commit 3435fb3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ jobs:
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Setup go 1.16
uses: actions/setup-go@v2
with:
go-version: '1.16'
- name: compile linux amd64
env:
GOARCH: amd64
Expand All @@ -39,6 +43,10 @@ jobs:
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Setup go 1.16
uses: actions/setup-go@v2
with:
go-version: '1.16'
- name: compile arm64
env:
GOARCH: arm64
Expand All @@ -62,6 +70,10 @@ jobs:
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Setup go 1.16
uses: actions/setup-go@v2
with:
go-version: '1.16'
- name: compile arm
env:
GOARCH: arm
Expand Down

0 comments on commit 3435fb3

Please sign in to comment.