27 lines
447 B
YAML
27 lines
447 B
YAML
|
project_name: wstunnel
|
||
|
builds:
|
||
|
- main: goreleaser.go
|
||
|
goos:
|
||
|
- linux
|
||
|
- darwin
|
||
|
- windows
|
||
|
goarch:
|
||
|
- amd64
|
||
|
- arm64
|
||
|
binary: example
|
||
|
ignore:
|
||
|
- goos: windows
|
||
|
goarch: arm64
|
||
|
hooks:
|
||
|
post:
|
||
|
- ./.goreleaser_hook.sh {{ .Arch }} {{ .Os }} {{ .ProjectName }}
|
||
|
checksum:
|
||
|
name_template: "checksums.txt"
|
||
|
changelog:
|
||
|
sort: asc
|
||
|
filters:
|
||
|
exclude:
|
||
|
- "^docs:"
|
||
|
- "^test:"
|
||
|
|