From b873364b0d90567bb9c3bce1819236f69094cb1b Mon Sep 17 00:00:00 2001 From: Anjali Trace Date: Fri, 6 Feb 2026 11:47:29 +0000 Subject: [PATCH] NRL-1928 Empty release action to allow manual triggering once merged into develop --- .github/workflows/release.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..05ace11ec --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,25 @@ +name: Release +run-name: Release NRL ${{ github.event.release.name }} +permissions: + id-token: write + contents: read + actions: write + +on: + release: + types: [published] + # push: + # tags: + # - v* + workflow_dispatch: + +jobs: + sbom: + name: Generate SBOM - ${{ github.ref }} + runs-on: ubuntu-latest + + steps: + - name: Git clone - ${{ github.ref }} + uses: actions/checkout@v4 + with: + ref: ${{ github.ref }}