sclient/.goreleaser.yml

47 lines
743 B
YAML
Raw Permalink Normal View History

2020-12-02 21:05:25 +00:00
before:
hooks:
- go mod download
- go generate ./...
builds:
- main: ./cmd/sclient/main.go
env:
- CGO_ENABLED=0
goos:
2023-10-27 20:38:41 +00:00
- darwin
2020-12-02 21:05:25 +00:00
- linux
2023-10-27 20:38:41 +00:00
- freebsd
2020-12-02 21:05:25 +00:00
- windows
2023-10-27 20:38:41 +00:00
- js
2020-12-02 21:05:25 +00:00
goarch:
- amd64
- arm
- arm64
2023-10-27 20:38:41 +00:00
- wasm
2020-12-02 21:05:25 +00:00
goarm:
- 7
2023-10-27 20:38:41 +00:00
goamd64:
- v2
ignore:
- goos: windows
goarch: 386
- goos: windows
goarm: 6
- goos: windows
goarm: 7
2020-12-02 21:05:25 +00:00
archives:
2023-10-27 20:38:41 +00:00
- id: sclient-binary
format: tar.xz
2020-12-02 21:05:25 +00:00
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'