You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FLEcli/.goreleaser.yml

40 lines
874 B

# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
builds:
- goos:
- linux
- windows
- darwin
ignore:
- goos: darwin
goarch: 386
- goos: windows
goarch: amd64
ldflags:
- -s -w -X FLEcli/cmd.version={{.Version}} -X FLEcli/cmd.commit={{.Commit}} -X FLEcli/cmd.date={{.Date}} -X=FLEcli/cmd.builtBy=goReleaser
env:
- CGO_ENABLED=0
archives:
- replacements:
amd64: 64-bit
386: 32-bit
darwin: macOS
linux: Linux
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
files:
- README.md
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
4 years ago
skip: true
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'