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
|
2024-10-14 15:18:13 +02:00
|
|
|
version: 2
|
2019-08-14 14:46:44 +02:00
|
|
|
before:
|
|
|
|
hooks:
|
|
|
|
- "go mod download"
|
|
|
|
|
|
|
|
builds:
|
2023-10-30 11:26:50 +01:00
|
|
|
- id: linux-amd64
|
|
|
|
flags:
|
2019-08-14 14:46:44 +02:00
|
|
|
- -a
|
|
|
|
binary: manager
|
|
|
|
env:
|
|
|
|
- CGO_ENABLED=0
|
|
|
|
goarch:
|
|
|
|
- amd64
|
2023-10-30 11:26:50 +01:00
|
|
|
goos:
|
|
|
|
- linux
|
|
|
|
- id: linux-arm64
|
|
|
|
flags:
|
|
|
|
- -a
|
|
|
|
binary: manager
|
|
|
|
env:
|
|
|
|
- CGO_ENABLED=0
|
|
|
|
goarch:
|
2023-08-25 15:14:16 +02:00
|
|
|
- arm64
|
2019-08-14 14:46:44 +02:00
|
|
|
goos:
|
|
|
|
- linux
|
2023-10-30 11:26:50 +01:00
|
|
|
- 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:
|
2023-08-25 15:14:16 +02:00
|
|
|
- darwin
|
2019-08-14 14:46:44 +02:00
|
|
|
|
|
|
|
snapshot:
|
2024-10-14 15:18:13 +02:00
|
|
|
version_template: "{{ .Tag }}-next"
|
2019-08-14 14:46:44 +02:00
|
|
|
|
|
|
|
changelog:
|
|
|
|
sort: asc
|
2023-10-30 11:26:50 +01:00
|
|
|
use: github-native
|
2019-08-14 14:46:44 +02:00
|
|
|
|
|
|
|
dockers:
|
|
|
|
- image_templates:
|
2023-10-30 11:26:50 +01:00
|
|
|
- "oryd/hydra-maester:{{ .Tag }}-amd64"
|
|
|
|
- "oryd/hydra-maester:{{ .ShortCommit }}-amd64"
|
|
|
|
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
|
|
|
|
2024-10-14 15:18:13 +02:00
|
|
|
docker_manifests:
|
|
|
|
- name_template: "oryd/hydra-maester:{{ .Tag }}"
|
|
|
|
id: "tag"
|
|
|
|
image_templates:
|
|
|
|
- "oryd/hydra-maester:{{ .Tag }}-amd64"
|
|
|
|
- "oryd/hydra-maester:{{ .Tag }}-arm64"
|
2024-10-14 16:20:53 +02:00
|
|
|
- name_template: "oryd/hydra-maester:latest"
|
|
|
|
id: "latest"
|
2024-10-14 15:18:13 +02:00
|
|
|
image_templates:
|
|
|
|
- "oryd/hydra-maester:{{ .Tag }}-amd64"
|
|
|
|
- "oryd/hydra-maester:{{ .Tag }}-arm64"
|
|
|
|
|
2019-08-14 14:46:44 +02:00
|
|
|
release:
|
|
|
|
prerelease: auto
|
2023-10-27 14:05:03 +02:00
|
|
|
name_template: "{{ .Tag }}"
|