We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1508186 commit 4c2fb3fCopy full SHA for 4c2fb3f
.goreleaser.yaml
@@ -0,0 +1,43 @@
1
+# .goreleaser.yaml
2
+version: 2
3
+builds:
4
+ -
5
+ env:
6
+ - CGO_ENABLED=1
7
+ goos:
8
+ - darwin
9
+ - linux
10
+ - netbsd
11
+ - openbsd
12
+ - freebsd
13
+ # - plan9
14
+ - windows
15
+ goarch:
16
+ - 386
17
+ - amd64
18
+ - arm
19
+ - arm64
20
+ goarm:
21
+ - 6
22
+ - 7
23
+ goarm64:
24
+ - 'v8.0'
25
+ - 'v9.0'
26
+ ignore:
27
+ - goos: darwin
28
+ goarch: 386
29
30
+ goarch: arm
31
+ - goos: netbsd
32
+ goarch: arm64
33
+ - goos: freebsd
34
+ goarm: arm64
35
+ - goos: plan9
36
37
+changelog:
38
+ disable: false
39
+ use: github
40
+ format: "{{.SHA}}: {{.Message}} (@{{.AuthorUsername}})"
41
+ sort: asc
42
+ abbrev: -1
43
+
0 commit comments