-
Notifications
You must be signed in to change notification settings - Fork 246
Expand file tree
/
Copy path.goreleaser.yml
More file actions
90 lines (79 loc) · 2.04 KB
/
.goreleaser.yml
File metadata and controls
90 lines (79 loc) · 2.04 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
project_name: chart-testing
version: 2
env:
- COSIGN_YES=true
before:
hooks:
- go mod download
sboms:
- artifacts: archive
builds:
- main: ct/main.go
binary: ct
env:
- CGO_ENABLED=0
goarch:
- amd64
- arm64
- arm
goos:
- linux
- darwin
- windows
ignore:
- goarch: arm
goos: windows
flags:
- -trimpath
mod_timestamp: '{{ .CommitTimestamp }}'
ldflags:
- >-
-X github.com/helm/chart-testing/v3/ct/cmd.Version={{ .Tag }}
-X github.com/helm/chart-testing/v3/ct/cmd.GitCommit={{ .Commit }}
-X github.com/helm/chart-testing/v3/ct/cmd.BuildDate={{ .Date }}
archives:
- format_overrides:
- goos: windows
formats:
- zip
files:
- LICENSE
- README.md
- etc/chart_schema.yaml
- etc/lintconf.yaml
checksum:
name_template: 'checksums.txt'
snapshot:
version_template: "{{ .Tag }}-next"
dockers_v2:
- images:
- "quay.io/helmpack/chart-testing"
tags:
- "{{ .Tag }}"
- "latest"
labels:
"org.opencontainers.image.version": "{{ .Version }}"
"org.opencontainers.image.revision": "{{ .Commit }}"
"org.opencontainers.image.title": "{{ .ProjectName }}"
"org.opencontainers.image.created": "{{ .Date }}"
"org.opencontainers.image.description": "ct - The chart testing tool"
"org.opencontainers.image.vendor": "Helm"
"org.opencontainers.image.licenses": "Apache-2.0"
"org.opencontainers.image.source": "https://github.com/helm/chart-testing"
"org.opencontainers.image.authors": "The Helm Authors"
extra_files:
- etc/chart_schema.yaml
- etc/lintconf.yaml
signs:
- id: all
signature: "${artifact}.sig"
certificate: "${artifact}.pem"
cmd: cosign
args: ["sign-blob", "--output-signature", "${artifact}.sig", "--output-certificate", "${artifact}.pem", "${artifact}"]
artifacts: all
docker_signs:
- id: images
cmd: cosign
args: ["sign", "${artifact}"]
changelog:
use: github-native