-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy path.goreleaser.yml
59 lines (59 loc) · 1.01 KB
/
.goreleaser.yml
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
before:
hooks:
- go mod tidy
- go generate ./...
builds:
-
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X "github.com/atredispartners/flamingo/cmd.Version={{.Version}}"
goos:
- windows
- linux
- darwin
- freebsd
goarch:
- amd64
- 386
- arm
- arm64
goarm:
- 5
- 6
- 7
ignore:
- goos: darwin
goarch: arm
- goos: freebsd
goarch: arm
signs:
- id: default
cmd: gpg
args:
- -u [email protected]
- --output
- $signature
- --detach-sig
- $artifact
signature: ${artifact}.sig
artifacts: checksum
archives:
- replacements:
darwin: macos
386: x86
arm64: aarch64
format: binary
files:
- none*
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}{{.Arm}}"
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'