dorfylegends/backend/.goreleaser.yaml

38 lines
724 B
YAML
Raw Normal View History

2022-05-10 20:47:51 +03:00
builds:
2022-05-10 21:15:05 +03:00
- id: linux/macos-amd64
binary: legendsbrowser
2022-05-10 20:47:51 +03:00
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- amd64
2022-05-10 21:15:05 +03:00
- id: windows-amd64
binary: LegendsBrowser
env:
- CGO_ENABLED=0
goos:
- windows
goarch:
- amd64
2022-05-10 20:47:51 +03:00
archives:
- format: zip
2023-11-17 17:20:29 +02:00
name_template: >-
legendsbrowser-
{{- .Version }}-
{{- if eq .Os "darwin" }}macos
{{- else if eq .Os "windows" }}win
{{- else }}{{ .Os }}{{ end }}
# name_template: "legendsbrowser-{{ .Version }}-{{ .Os }}"
# replacements:
# darwin: macos
# linux: linux
# windows: win
2022-05-10 20:47:51 +03:00
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'