Skip to content

Commit 5582eb6

Browse files
committed
Add macOS Silicon build to GoReleaser
1 parent aa22fb7 commit 5582eb6

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

pipedream/.goreleaser.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ before:
55
- go mod download
66

77
builds:
8-
- id: "pipedream"
8+
- id: "general"
99
binary: pipedream
1010
ldflags: -s -w -X main.Version={{ .Version }}
1111
env:
@@ -17,20 +17,27 @@ builds:
1717
- amd64
1818
- arm64
1919
- 386
20-
- arm
2120
goarm:
2221
- 6
2322
- 7
2423
hooks:
2524
post:
2625
- upx "{{ .Path }}"
26+
- id: "windows arm"
27+
binary: pipedream
28+
ldflags: -s -w -X main.Version={{ .Version }}
29+
goos:
30+
- windows
31+
goarch:
32+
- arm
2733
- id: "darwin"
2834
binary: pipedream
2935
ldflags: -s -w -X main.Version={{ .Version }}
3036
goos:
3137
- darwin
3238
goarch:
3339
- amd64
40+
- arm64
3441
hooks:
3542
post:
3643
- upx "{{ .Path }}"

0 commit comments

Comments
 (0)