hydra-maester/.goreleaser.yml

40 lines
786 B
YAML
Raw Normal View History

2019-08-14 14:46:44 +02:00
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
project_name: hydra-maester
before:
hooks:
- "go mod download"
builds:
- flags:
- -a
binary: manager
env:
- CGO_ENABLED=0
goarch:
- amd64
- 386
- arm64
2019-08-14 14:46:44 +02:00
goos:
- linux
- darwin
2019-08-14 14:46:44 +02:00
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
dockers:
- image_templates:
- "oryd/hydra-maester:v{{ .Major }}"
- "oryd/hydra-maester:v{{ .Major }}.{{ .Minor }}"
- "oryd/hydra-maester:v{{ .Major }}.{{ .Minor }}.{{ .Patch }}"
2023-10-27 14:05:03 +02:00
- "oryd/hydra-maester:{{ .ShortCommit }}"
2019-08-14 14:46:44 +02:00
- "oryd/hydra-maester:latest"
release:
prerelease: auto
2023-10-27 14:05:03 +02:00
name_template: "{{ .Tag }}"