fathom/.goreleaser.yml

31 lines
548 B
YAML
Raw Normal View History

# Documentation http://goreleaser.com
before:
hooks:
- make assets/dist
2018-10-30 18:26:01 +00:00
builds:
-
main: main.go
2018-10-30 18:26:01 +00:00
goos:
- linux
- openbsd
- freebsd
2018-10-30 18:26:01 +00:00
goarch:
- amd64
- 386
2018-11-19 10:27:56 +00:00
- arm64
ldflags:
- -extldflags "-static" -s -w -X "main.version={{.Version}}" -X "main.commit={{.Commit}}" -X "main.date={{.Date}}"
2018-10-30 18:26:01 +00:00
hooks:
pre: packr
post: packr clean
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'