-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
.goreleaser.yaml
60 lines (54 loc) · 1.14 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
project_name: go-authcrunch
release:
github:
owner: greenpau
name: go-authcrunch
draft: false
prerelease: auto
checksum:
name_template: "{{.ProjectName}}_{{.Version}}_SHA256SUMS"
builds:
- env:
- CGO_ENABLED=0
- GO111MODULE=on
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
main: ./cmd/authdbctl
binary: ./bin/authdbctl
flags:
- -trimpath
- -mod=readonly
asmflags:
- all=-trimpath={{.Env.GOPATH}}
gcflags:
- all=-trimpath={{.Env.GOPATH}}
ldflags: -s -w
nfpms:
- id: authp
maintainer: "Paul Greenberg <[email protected]>"
file_name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
changelog:
sort: asc
filters:
exclude:
- '^docs?:'
- '^readme:'
- '^tests?:'
- '^github:'
- '^ops:'
- '^misc:'
- '^upgrade'
- '^update'
- '^github'
- '^release'
# - '^\w+\s+' # a hack to remove commit messages without colons thus don't correspond to a package