mirror of https://github.com/pressly/goose.git
52 lines
1.0 KiB
YAML
52 lines
1.0 KiB
YAML
# Documentation at https://goreleaser.com
|
|
project_name: goose
|
|
|
|
gomod:
|
|
proxy: true
|
|
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
main: ./cmd/goose
|
|
binary: goose
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
# Custom ldflags templates.
|
|
# Default is `-s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.builtBy=goreleaser`.
|
|
ldflags:
|
|
- -s -w
|
|
|
|
# You can disable this pipe in order to not upload any artifacts.
|
|
# Defaults to false.
|
|
release:
|
|
disable: false
|
|
|
|
archives:
|
|
- replacements:
|
|
386: i386
|
|
amd64: x86_64
|
|
name_template: "{{ tolower .Binary }}_{{ tolower .Os }}_{{ tolower .Arch }}"
|
|
format: binary
|
|
|
|
checksum:
|
|
name_template: "checksums.txt"
|
|
|
|
snapshot:
|
|
name_template: "{{ incpatch .Version }}-next"
|
|
|
|
changelog:
|
|
use: github
|
|
sort: asc
|
|
# Commit messages matching the regexp listed here will be removed from
|
|
# the changelog.
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|
|
# TODO(mf): add docker support?
|