-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
53 lines (47 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
project_name: dyndns
release:
github:
owner: greenpau
name: dyndns
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/dyndns
binary: ./bin/dyndns
flags:
- -trimpath
- -mod=readonly
asmflags:
- all=-trimpath={{.Env.GOPATH}}
gcflags:
- all=-trimpath={{.Env.GOPATH}}
ldflags: -s -w
nfpms:
- id: dyndns
maintainer: "Paul Greenberg <greenpau@outlook.com>"
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?:'
# - '^\w+\s+' # a hack to remove commit messages without colons thus don't correspond to a package