forked from docker/packaging
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 799 Bytes
/
Copy pathrelease-sbom.yml
File metadata and controls
38 lines (35 loc) · 799 Bytes
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
name: release-sbom
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
inputs:
ref:
description: 'Ref (e.g. v0.6.1)'
required: true
type: string
repo:
description: 'Override default repo'
required: false
type: string
release:
description: 'Release type'
required: false
default: 'prerelease'
type: choice
options:
- pushonly
- draft
- prerelease
- release
jobs:
release:
uses: ./.github/workflows/.build.yml
with:
name: sbom
release: ${{ inputs.release }}
envs: |
PKG_REPO=${{ inputs.repo }}
PKG_REF=${{ inputs.ref }}
secrets: inherit