hydra-maester/.goreleaser.yml

92 lines
1.6 KiB
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:
- id: linux-amd64
flags:
2019-08-14 14:46:44 +02:00
- -a
binary: manager
env:
- CGO_ENABLED=0
goarch:
- amd64
goos:
- linux
- id: linux-arm64
flags:
- -a
binary: manager
env:
- CGO_ENABLED=0
goarch:
- arm64
2019-08-14 14:46:44 +02:00
goos:
- linux
- id: linux-i386
flags:
- -a
binary: manager
env:
- CGO_ENABLED=0
goarch:
- 386
goos:
- linux
- id: darwin-amd64
flags:
- -a
binary: manager
env:
- CGO_ENABLED=0
goarch:
- amd64
goos:
- darwin
- id: darwin-arm64
flags:
- -a
binary: manager
env:
- CGO_ENABLED=0
goarch:
- arm64
goos:
- darwin
2019-08-14 14:46:44 +02:00
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
use: github-native
2019-08-14 14:46:44 +02:00
dockers:
- image_templates:
- "oryd/hydra-maester:{{ .Tag }}-amd64"
- "oryd/hydra-maester:{{ .ShortCommit }}-amd64"
2019-08-14 14:46:44 +02:00
- "oryd/hydra-maester:latest"
goarch: amd64
build_flag_templates:
- "--platform=linux/amd64"
dockerfile: ".docker/Dockerfile-release"
ids:
- "linux-amd64"
- image_templates:
- "oryd/hydra-maester:{{ .Tag }}-arm64"
- "oryd/hydra-maester:{{ .ShortCommit }}-arm64"
goarch: arm64
build_flag_templates:
- "--platform=linux/arm64"
dockerfile: ".docker/Dockerfile-release"
ids:
- "linux-arm64"
2019-08-14 14:46:44 +02:00
release:
prerelease: auto
2023-10-27 14:05:03 +02:00
name_template: "{{ .Tag }}"