Add goreleaser config.

This commit is contained in:
bvanvugt 2020-12-10 21:01:43 -08:00
parent 8320ef23cd
commit 78ca2e09c6

33
.goreleaser.yml Normal file
View file

@ -0,0 +1,33 @@
# This is an example goreleaser.yaml file with some sane 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 download
builds:
- main: .cli/battlesnake
id: "battlesnake"
binary: battlesnake
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'