mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
e54656438b
The replacements thing was always a bit weird, especially on archives. We can solve that with templates, so, removing I'm deprecating it. Also did the same on other places that had it the same feature. Closes #3588 Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
22 lines
517 B
YAML
22 lines
517 B
YAML
# This is an example .goreleaser.yaml file with some sensible defaults.
|
|
# Make sure to check the documentation at http://goreleaser.com
|
|
before:
|
|
hooks:
|
|
# You may remove this if you don't use go modules.
|
|
- go mod tidy
|
|
# you may remove this if you don't need go generate
|
|
- go generate ./...
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
snapshot:
|
|
name_template: "{{ incpatch .Version }}-next"
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- '^docs:'
|
|
- '^test:'
|