We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ffc4286 + b873364 commit aa6e7f2Copy full SHA for aa6e7f2
1 file changed
.github/workflows/release.yml
@@ -0,0 +1,25 @@
1
+name: Release
2
+run-name: Release NRL ${{ github.event.release.name }}
3
+permissions:
4
+ id-token: write
5
+ contents: read
6
+ actions: write
7
+
8
+on:
9
+ release:
10
+ types: [published]
11
+ # push:
12
+ # tags:
13
+ # - v*
14
+ workflow_dispatch:
15
16
+jobs:
17
+ sbom:
18
+ name: Generate SBOM - ${{ github.ref }}
19
+ runs-on: ubuntu-latest
20
21
+ steps:
22
+ - name: Git clone - ${{ github.ref }}
23
+ uses: actions/checkout@v4
24
+ with:
25
+ ref: ${{ github.ref }}
0 commit comments