We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de6daf4 commit d7e39dbCopy full SHA for d7e39db
.github/workflows/generate-sbom.yml
@@ -0,0 +1,23 @@
1
+name: "Generate SBOM"
2
+on:
3
+ push:
4
+ branches: [test-sbom]
5
+ pull_request:
6
+ types: [opened, synchronize, reopened]
7
+jobs:
8
+ generate-sbom:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@master
12
+ - uses: anchore/sbom-action@v0
13
+ with:
14
+ path: ./
15
+ format: cyclonedx-json
16
+ artifact-name: sbom-repo.cdx.json
17
18
19
+ image: my-registry.com/my/awesome/image
20
+ registry-username: ${{ secrets.REGISTRY_USERNAME }}
21
+ registry-password: ${{ secrets.REGISTRY_PASSWORD }}
22
23
+ artifact-name: sbom-image.cdx.json
0 commit comments