Added .goreleaser.yml

This commit is contained in:
Christian Muehlhaeuser
2019-08-03 00:09:14 +02:00
parent f94320952c
commit 0d25b3c145
2 changed files with 44 additions and 0 deletions

3
.gitignore vendored
View File

@@ -13,3 +13,6 @@
# Binaries # Binaries
gitomatic gitomatic
# Dist
/dist/

41
.goreleaser.yml Normal file
View File

@@ -0,0 +1,41 @@
builds:
-
binary: gitomatic
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
- 386
- arm
goarm:
- 6
- 7
ignore:
- goos: darwin
goarch: 386
- goos: linux
goarch: arm
goarm: 7
sign:
artifacts: checksum
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:'