-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
.goreleaser.yaml
99 lines (90 loc) · 1.75 KB
/
.goreleaser.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# .goreleaser.yaml
changelog:
sort: asc
use: github
filters:
exclude:
- '^test:'
- '^chore'
- 'merge conflict'
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
release:
footer: |
**Full Changelog**: https://github.com/mrusme/neonmodem/compare/{{ .PreviousTag }}...{{ .Tag }}
builds:
-
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- netbsd
- openbsd
- freebsd
# - plan9
# - android
- windows
goarch:
- 386
- amd64
- arm
- arm64
goarm:
- 6
- 7
ignore:
- goos: darwin
goarch: 386
- goos: darwin
goarch: arm
- goos: darwin
goarch: ppc64
- goos: darwin
goarch: ppc64le
- goos: darwin
goarch: riscv64
- goos: dragonfly
goarch: 386
- goos: dragonfly
goarch: arm
- goos: dragonfly
goarch: arm64
- goos: dragonfly
goarch: ppc64
- goos: dragonfly
goarch: ppc64le
- goos: dragonfly
goarch: riscv64
- goos: freebsd
goarm: arm64
- goos: freebsd
goarm: ppc64
- goos: freebsd
goarm: ppc64le
- goos: freebsd
goarm: riscv64
- goos: netbsd
goarch: arm64
- goos: netbsd
goarch: ppc64
- goos: netbsd
goarch: ppc64le
- goos: netbsd
goarch: riscv64
- goos: plan9
goarm: arm64
- goos: plan9
goarm: ppc64
- goos: plan9
goarm: ppc64le
- goos: plan9
goarm: riscv64
- goos: windows
goarm: ppc64
- goos: windows
goarm: ppc64le
- goos: windows
goarm: riscv64