2021-12-23 02:52:01 +02:00
|
|
|
# This is an example .goreleaser.yaml file with some sensible defaults.
|
2020-04-28 02:42:44 +02:00
|
|
|
# Make sure to check the documentation at http://goreleaser.com
|
|
|
|
before:
|
|
|
|
hooks:
|
|
|
|
# You may remove this if you don't use go modules.
|
2021-03-03 02:29:31 +02:00
|
|
|
- go mod tidy
|
2020-04-28 02:42:44 +02:00
|
|
|
# you may remove this if you don't need go generate
|
|
|
|
- go generate ./...
|
|
|
|
builds:
|
|
|
|
- env:
|
|
|
|
- CGO_ENABLED=0
|
|
|
|
checksum:
|
|
|
|
name_template: 'checksums.txt'
|
|
|
|
snapshot:
|
2021-08-21 15:59:15 +02:00
|
|
|
name_template: "{{ incpatch .Version }}-next"
|
2020-04-28 02:42:44 +02:00
|
|
|
changelog:
|
|
|
|
sort: asc
|
|
|
|
filters:
|
|
|
|
exclude:
|
|
|
|
- '^docs:'
|
|
|
|
- '^test:'
|