Skip to content

Commit aa6e7f2

Browse files
Merge pull request #1138 from NHSDigital/NRL-1928-empty-sbom-pipeline
NRL-1928 Empty release action to allow manual triggering once merged …
2 parents ffc4286 + b873364 commit aa6e7f2

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)