Files
kapow/.goreleaser.yml
2023-01-23 13:41:39 +01:00

53 lines
821 B
YAML

before:
hooks:
- go mod tidy
project_name: kapow
builds:
- id: kapow
flags:
- -trimpath
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
- freebsd
goarch:
- 386
- amd64
- arm
- arm64
ignore:
- goos: darwin
goarch: 386
archives:
- format: binary
checksum:
name_template: '{{ .ProjectName }}-{{ .Version }}-SHA512SUMS'
algorithm: sha512
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
filters:
exclude:
- '^(chore|docs?|fix|refactor|style|test|typo|wip)(\([^)]+\))?:'
dockers:
- goos: linux
goarch: amd64
goarm: ''
image_templates:
- "bbvalabsci/kapow:latest"
- "bbvalabsci/kapow:{{ .Tag }}"
- "bbvalabsci/kapow:v{{ .Major }}"
skip_push: true
release:
draft: false
prerelease: auto