We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4963542 commit aeefd17Copy full SHA for aeefd17
.goreleaser.yaml
@@ -2,6 +2,7 @@ version: 2
2
before:
3
hooks:
4
- go mod download
5
+ - bash -eux -o pipefail -c "mkdir -p releases; cd config/variants/hrq; kustomize edit set image controller=ghcr.io/pfnet/{{ .ProjectName }}:{{ .Version }}; kustomize build . > ../../../releases/hrq.yaml"
6
builds:
7
- id: manager
8
env:
@@ -19,6 +20,9 @@ builds:
19
20
- -a
21
ldflags:
22
- -s -w -X github.com/pfnet/hierarchical-namespaces/cmd.Version={{.Version}} -X github.com/pfnet/hierarchical-namespaces/cmd.Revision={{.ShortCommit}} -extldflags "-static"
23
+release:
24
+ extra_files:
25
+ - glob: "releases/hrq.yaml"
26
27
dockers:
28
- image_templates: ["ghcr.io/pfnet/{{ .ProjectName }}:{{ .Version }}-amd64"]
0 commit comments