Skip to content

Commit 7763533

Browse files
authored
Add Darwin/arm64 build (#62)
* Add Darwin/arm64 build Signed-off-by: Francis Guimond <[email protected]>
1 parent e9b4b01 commit 7763533

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

.bonsai.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@ builds:
4141
- "entity.system.os == 'darwin'"
4242
- "entity.system.arch == 'amd64'"
4343

44+
- platform: "OSX"
45+
arch: "arm64"
46+
asset_filename: "#{repo}_#{version}_darwin_arm64.tar.gz"
47+
sha_filename: "#{repo}_#{version}_sha512-checksums.txt"
48+
filter:
49+
- "entity.system.os == 'darwin'"
50+
- "entity.system.arch == 'arm64'"
51+
4452
- platform: "Windows"
4553
arch: "amd64"
4654
asset_filename: "#{repo}_#{version}_windows_amd64.tar.gz"

.goreleaser.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,17 @@ builds:
1717
- linux
1818
- windows
1919
goarch:
20-
- amd64
21-
- 386
22-
- arm
23-
- arm64
20+
- 'amd64'
21+
- '386'
22+
- 'arm'
23+
- 'arm64'
2424
goarm:
25-
- 5
26-
- 6
27-
- 7
25+
- '5'
26+
- '6'
27+
- '7'
2828
targets:
2929
- darwin_amd64
30+
- darwin_arm64
3031
- linux_386
3132
- linux_amd64
3233
- linux_arm_5

0 commit comments

Comments
 (0)