We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1216253 commit eadcfdcCopy full SHA for eadcfdc
.github/workflows/tag.yml
@@ -49,3 +49,17 @@ jobs:
49
pull: true
50
tags: ${{ steps.docker_meta_img_hub.outputs.tags }}
51
labels: ${{ steps.docker_meta_img_hub.outputs.labels }}
52
+
53
+ create_release:
54
+ runs-on: ubuntu-latest
55
+ permissions:
56
+ contents: write
57
+ steps:
58
+ - name: generate sbom via dependency-graph
59
+ run: gh api repos/${{ github.repository }}/dependency-graph/sbom > dependencies.sbom.json
60
+ env:
61
+ GH_TOKEN: ${{ github.token }}
62
+ - name: create release
63
+ uses: softprops/action-gh-release@v2
64
+ with:
65
+ files: dependencies.sbom.json
0 commit comments