-
Notifications
You must be signed in to change notification settings - Fork 14
/
.goreleaser.yaml
77 lines (68 loc) · 2.11 KB
/
.goreleaser.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: 2
project_name: template-controller
builds:
- binary: bin/template-controller
env:
- CGO_ENABLED=0
id: linux
goos:
- linux
goarch:
- amd64
- arm64
goarm:
- 7
archives:
- name_template: "{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format: tar.gz
files:
- none*
dockers:
- id: linux-amd64
goos: linux
goarch: amd64
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.created={{ .Date }}"
- "--label=org.opencontainers.image.name={{ .ProjectName }}"
- "--label=org.opencontainers.image.revision={{ .FullCommit }}"
- "--label=org.opencontainers.image.version={{ .Version }}"
- "--label=org.opencontainers.image.source={{ .GitURL }}"
- "--platform=linux/amd64"
image_templates:
- "ghcr.io/kluctl/template-controller:v{{ .Version }}-amd64"
- id: linux-arm64
goos: linux
goarch: arm64
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.created={{ .Date }}"
- "--label=org.opencontainers.image.name={{ .ProjectName }}"
- "--label=org.opencontainers.image.revision={{ .FullCommit }}"
- "--label=org.opencontainers.image.version={{ .Version }}"
- "--label=org.opencontainers.image.source={{ .GitURL }}"
- "--platform=linux/arm64"
image_templates:
- "ghcr.io/kluctl/template-controller:v{{ .Version }}-arm64"
docker_manifests:
- name_template: ghcr.io/kluctl/template-controller:{{ .Tag }}
image_templates:
- "ghcr.io/kluctl/template-controller:v{{ .Version }}-amd64"
- "ghcr.io/kluctl/template-controller:v{{ .Version }}-arm64"
release:
draft: true
prerelease: "true"
extra_files:
- glob: bin/chart/template-controller-*.tgz
checksum:
extra_files:
- glob: bin/chart/template-controller-*.tgz
name_template: '{{ .ProjectName }}_v{{ .Version }}_checksums.txt'
source:
enabled: true
name_template: "{{ .ProjectName }}_v{{ .Version }}_source_code"
sboms:
- id: source
artifacts: source
documents:
- "{{ .ProjectName }}_v{{ .Version }}_sbom.spdx.json"