Upload SBOM to EdgeBit #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload SBOM to EdgeBit | |
on: | |
workflow_run: | |
workflows: ["Generate an SBOM from source code"] | |
types: | |
- completed | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.conclusion == 'success' | |
steps: | |
- name: Download metadata | |
id: metadata | |
uses: dawidd6/[email protected] | |
with: | |
run_id: ${{ github.event.workflow_run.id }} | |
name: metadata.json | |
- name: Download SBOM | |
id: sbom | |
uses: dawidd6/[email protected] | |
with: | |
run_id: ${{ github.event.workflow_run.id }} | |
name: sbom.spdx.json | |
- name: Upload SBOM to EdgeBit | |
uses: edgebitio/edgebit-build@v1 | |
with: | |
edgebit-url: https://alex.edgebit.io | |
token: ${{ secrets.EDGEBIT_TOKEN }} | |
component: marker | |
sbom-file: ./sbom.spdx.json | |
args-file: ./metadata.json |