We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffc4286 commit b873364Copy full SHA for b873364
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