Skip to content

Commit 06c6c3f

Browse files
Merge pull request #66 from cedricziel/patch-1
- add arm64 architecture for M1 based Macs (thanks @cedricziel)
2 parents fa094dd + 0424d4c commit 06c6c3f

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/go.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ jobs:
3030
if: ${{ startsWith(github.ref, 'refs/tags/') && contains(fromJSON('["mxschmitt", "JonasProgrammer"]'), github.actor) }}
3131
steps:
3232
- uses: actions/checkout@v2
33+
- name: Set up Go
34+
uses: actions/setup-go@v2
35+
with:
36+
go-version: 1.16
3337
- name: Run GoReleaser
3438
uses: goreleaser/goreleaser-action@v2
3539
with:

.github/workflows/manual-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ jobs:
66
runs-on: ubuntu-20.04
77
steps:
88
- uses: actions/checkout@v2
9+
- name: Set up Go
10+
uses: actions/setup-go@v2
11+
with:
12+
go-version: 1.16
913
- name: Run GoReleaser
1014
uses: goreleaser/goreleaser-action@v2
1115
with:

.goreleaser.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ builds:
55
- windows
66
goarch:
77
- amd64
8+
- arm64
89
env:
910
- CGO_ENABLED=0

0 commit comments

Comments
 (0)