mirror of
https://github.com/stryan/mumble-discord-bridge.git
synced 2024-10-31 16:55:42 -04:00
31 lines
633 B
YAML
31 lines
633 B
YAML
|
# This is an example .goreleaser.yml 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=1
|
||
|
goos:
|
||
|
- linux
|
||
|
# - windows
|
||
|
# - darwin
|
||
|
goarch:
|
||
|
- amd64
|
||
|
|
||
|
archives:
|
||
|
checksum:
|
||
|
name_template: 'checksums.txt'
|
||
|
snapshot:
|
||
|
name_template: "{{ .Tag }}-next"
|
||
|
changelog:
|
||
|
sort: asc
|
||
|
filters:
|
||
|
exclude:
|
||
|
- '^docs:'
|
||
|
- '^test:'
|
||
|
- '^chore:'
|