generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 280
37 lines (35 loc) · 897 Bytes
/
sbom.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
on:
workflow_dispatch:
inputs:
tag:
type: string
required: true
permissions: {}
jobs:
test_bom_action:
runs-on: ubuntu-latest
permissions:
contents: write
name: Install bom and generate SBOM
steps:
- name: Set tag name
shell: bash
run: |
TAG=${{ github.event.inputs.tag }}
echo "TAG=$TAG" >> "$GITHUB_ENV"
- name: Install bom
uses: kubernetes-sigs/release-actions/[email protected]
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate SBOM
shell: bash
run: |
bom generate -o /tmp/kueue.spdx .
cd /tmp
tar zcf sbom.tar.gz *.spdx
- name: Upload SBOM
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: |
gh release upload $TAG /tmp/sbom.tar.gz