abra/.goreleaser.yml

71 lines
1.1 KiB
YAML
Raw Permalink Normal View History

---
gitea_urls:
api: https://git.coopcloud.tech/api/v1
download: https://git.coopcloud.tech/
skip_tls_verify: false
2023-02-08 22:02:54 +00:00
before:
hooks:
- go mod tidy
2023-02-08 22:02:54 +00:00
builds:
- id: abra
binary: abra
dir: cmd/abra
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- 386
- amd64
- arm
- arm64
goarm:
- 5
- 6
- 7
ldflags:
- "-X 'main.Commit={{ .Commit }}'"
- "-X 'main.Version={{ .Version }}'"
2023-02-08 22:02:54 +00:00
- id: kadabra
binary: kadabra
dir: cmd/kadabra
env:
- CGO_ENABLED=0
goos:
- linux
2021-10-02 20:52:25 +00:00
- darwin
goarch:
- 386
- amd64
- arm
- arm64
goarm:
- 5
- 6
- 7
2021-09-07 07:23:09 +00:00
ldflags:
- "-X 'main.Commit={{ .Commit }}'"
- "-X 'main.Version={{ .Version }}'"
2023-02-08 22:02:54 +00:00
checksum:
name_template: "checksums.txt"
2023-02-08 22:02:54 +00:00
snapshot:
name_template: "{{ incpatch .Version }}-next"
2023-02-08 22:02:54 +00:00
changelog:
sort: desc
filters:
exclude:
2022-08-11 23:11:25 +00:00
- "^Merge"
- "^Revert"
- "^WIP:"
- "^chore(deps):"
2021-10-02 20:51:27 +00:00
- "^style:"
- "^test:"
2021-10-02 20:51:27 +00:00
- "^tests:"