Skip to content

Commit

Permalink
add goreleaser config file
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyvankooten committed Oct 30, 2018
1 parent 17577d8 commit e6704fa
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
builds:
-
main: ./cmd/fathom/main.go
goos:
- linux
goarch:
- amd64
- 386
- arm64
env:
- CGO_ENABLED=0
hooks:
pre: packr
post: packr clean
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'

0 comments on commit e6704fa

Please sign in to comment.