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

38 lines
757 B
YAML

# TODO add homebrew packagin
# TODO add Ubuntu packaging
# TODO add github integration
before:
hooks:
# You may remove this if you don't use go modules.
- go mod download
# you may remove this if you don't need go generate
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- amd64
main: ./cmd/fastgallery/main.go
binary: ./bin/fastgallery
archives:
- replacements:
darwin: macOS
linux: Linux
# windows: Windows
#386: i386
amd64: x86_64
wrap_in_directory: true
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'