Add goreleaser configuration

master v0.1.0
Vladimir Hodakov 4 years ago
parent 7a188bcbaa
commit 7f1b3ec002
Signed by: Vladimir Hodakov
GPG Key ID: 673980B6882F82C6

1
.gitignore vendored

@ -0,0 +1 @@
/dist/

@ -0,0 +1,26 @@
before:
hooks:
# you may remove this if you don't use vgo
- go mod download
# you may remove this if you don't need go generate
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
archive:
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:'
Loading…
Cancel
Save