Skip to content

Commit e823147

Browse files
committedApr 3, 2024
Add schedule-builder to release job
Signed-off-by: Sascha Grunert <[email protected]>
1 parent b164659 commit e823147

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed
 

‎.goreleaser.yml

+27
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,17 @@ builds:
4747
- amd64
4848
- arm64
4949

50+
- id: schedule-builder
51+
no_unique_dist_dir: true
52+
main: ./cmd/schedule-builder
53+
binary: schedule-builder-{{ .Arch }}-{{ .Os }}
54+
goos:
55+
- linux
56+
- darwin
57+
goarch:
58+
- amd64
59+
- arm64
60+
5061
archives:
5162
- format: binary
5263
name_template: "{{ .Binary }}"
@@ -109,6 +120,22 @@ sboms:
109120
documents:
110121
- "publish-release-bom.json.spdx"
111122

123+
- id: schedule-builder
124+
cmd: bom
125+
args:
126+
- generate
127+
- "--output"
128+
- "schedule-builder-bom.json.spdx"
129+
- "-d"
130+
- "../"
131+
- "-c"
132+
- "../.schedule-builder-bom-config.yaml"
133+
- "--format"
134+
- "json"
135+
artifacts: any
136+
documents:
137+
- "schedule-builder-bom.json.spdx"
138+
112139
checksum:
113140
name_template: 'checksums.txt'
114141

‎.schedule-builder-bom-config.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
license: Apache-2.0
3+
name: schedule-builder
4+
creator:
5+
person: The Kubernetes Authors
6+
tool: schedule-builder
7+
8+
artifacts:
9+
- type: file
10+
source: schedule-builder-amd64-darwin
11+
license: Apache-2.0
12+
gomodules: true
13+
14+
- type: file
15+
source: schedule-builder-amd64-linux
16+
license: Apache-2.0
17+
gomodules: true
18+
19+
- type: file
20+
source: schedule-builder-arm64-darwin
21+
license: Apache-2.0
22+
gomodules: true
23+
24+
- type: file
25+
source: schedule-builder-arm64-linux
26+
license: Apache-2.0
27+
gomodules: true

0 commit comments

Comments
 (0)
Please sign in to comment.