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 466f2c6 commit 85e48abCopy full SHA for 85e48ab
.github/actions/shared-steps/action.yml
@@ -517,12 +517,8 @@ runs:
517
shell: bash
518
run: |
519
. ./.venv-sbom/bin/activate
520
- mkdir -p sbom
521
- shopt -s nullglob
522
- for f in *.sbom-data.json; do
523
- echo "Generating SBOM document with $f"
524
- base=$(basename "$f" .json)
525
- python3 sbom-tools/sbom_generator.py "${base}" "$f" "${base}.sbom.spdx.json"
+ echo "Generating SBOM document of ${{ env.IMAGE_FILE }}"
+ python3 sbom-tools/sbom_generator.py "${{ env.IMAGE_NAME }}" "${{ env.IMAGE_FILE }}.sbom-data.json" "${{ env.IMAGE_FILE }}.sbom.spdx.json"
526
done
527
528
# - name: Setup tmate session
0 commit comments