copyfail-go/.goreleaser.yaml
kernel-sanders eaa1e40d1f feat: initial commit
Signed-off-by: kernel-sanders <1490292+kernel-sanders@users.noreply.github.com>
2026-04-29 18:53:12 -04:00

30 lines
No EOL
540 B
YAML

version: 2
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
archives:
- format: tar.gz
# this name template makes the OS and Arch compatible with the results of `uname`.
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"