-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
80 lines (75 loc) · 1.44 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/genapid
id: "genapid"
goos:
- linux
- windows
- darwin
- freebsd
- openbsd
goarch:
- 386
- amd64
- arm
- arm64
goarm:
- 5
- 6
- 7
ignore:
- goos: windows
goarch: arm
- goos: windows
goarch: arm64
- goos: darwin
goarch: 386
- goos: darwin
goarch: arm
- goos: openbsd
goarch: arm
- goos: openbsd
goarch: arm64
- goos: freebsd
goarch: arm64
mod_timestamp: '{{ .CommitTimestamp }}'
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X main.buildVersion={{.Version}} -X main.buildCommit={{.Commit}} -X main.buildDate={{ .CommitDate }} -X main.buildSource=released
archives:
- replacements:
darwin: MacOS
linux: Linux
windows: Windows
freebsd: FreeBSD
openbsd: OpenBSD
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
- examples/**/*.md
- examples/**/*.yml
- predicates/*/README.md
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^minor'
- '^build:'
- refactor
- Merge pull request
- Merge branch
- go mod tidy