35 lines
642 B
YAML
35 lines
642 B
YAML
|
# 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:
|
||
|
- env:
|
||
|
- CGO_ENABLED=0
|
||
|
goos:
|
||
|
- 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
|