Skip to content

Commit

Permalink
chore: add goreleaser.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tmountain committed Jan 6, 2021
1 parent 124eb1b commit 9347fab
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This is an example .goreleaser.yml 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
# you may remove this if you don't need go generate
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm
goarm:
- 5
archives:
- replacements:
darwin: osx
linux: linux
windows: windows
386: i386
amd64: x86_64
format: binary
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'

0 comments on commit 9347fab

Please sign in to comment.