Skip to content

Commit

Permalink
BC-8631 generate source SBOM (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Loki-Afro authored Feb 17, 2025
1 parent 274d187 commit dd3cc78
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,17 @@ jobs:
pull: true
tags: ${{ steps.docker_meta_img_hub.outputs.tags }}
labels: ${{ steps.docker_meta_img_hub.outputs.labels }}

create_release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: generate sbom via dependency-graph
run: gh api repos/${{ github.repository }}/dependency-graph/sbom > dependencies.sbom.json
env:
GH_TOKEN: ${{ github.token }}
- name: create release
uses: softprops/action-gh-release@v2
with:
files: dependencies.sbom.json

0 comments on commit dd3cc78

Please sign in to comment.