goveal/.goreleaser.yml

59 lines
1,008 B
YAML
Raw Normal View History

project_name: goveal
builds:
2021-12-23 10:17:14 +00:00
- main: ./cmd/goveal/
binary: goveal
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm
- arm64
ldflags:
- -w -s
env:
- CGO_ENABLED=0
ignore:
- goos: darwin
2021-12-23 10:17:14 +00:00
goarch: '386'
- goos: linux
goarch: arm
2021-12-23 10:17:14 +00:00
goarm: '7'
2021-12-23 11:20:10 +00:00
dockers:
- id: goveal
goos: linux
goarch: amd64
goarm: ''
ids:
- goveal
image_templates:
- ghcr.io/baez90/goveal:{{ .Tag }}
- ghcr.io/baez90/goveal:{{ .Major }}
dockerfile: ./build/docker/goveal.dockerfile
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'