2021-02-07 10:46:25 +00:00
|
|
|
# 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
|
|
|
|
# you may remove this if you don't need go generate
|
|
|
|
- go generate ./...
|
|
|
|
builds:
|
2021-02-07 11:43:07 +00:00
|
|
|
- goos:
|
2021-02-07 10:46:25 +00:00
|
|
|
- linux
|
|
|
|
- windows
|
|
|
|
- darwin
|
|
|
|
goarch:
|
|
|
|
- amd64
|
|
|
|
- "386"
|
|
|
|
- arm
|
|
|
|
- arm64
|
|
|
|
goarm:
|
|
|
|
- "6"
|
|
|
|
- "7"
|
|
|
|
|
|
|
|
archives:
|
|
|
|
-
|
|
|
|
files:
|
|
|
|
- LICENSE
|
|
|
|
- README.md
|
|
|
|
- CHANGELOG.md
|
|
|
|
checksum:
|
|
|
|
name_template: 'checksums.txt'
|
|
|
|
changelog:
|
|
|
|
skip: true
|