Skip to content

Commit

Permalink
Cleanup verifiable build action (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
brittcyr authored Nov 12, 2024
1 parent db688d4 commit e7b6172
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-verifiable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Generate Checksum wrapper
run: |
echo "CHECKSUM_WRAPPER=$(sha256sum ./target/deploy/${{ env.WRAPPER_NAME }}.so | head -c 64)" >> $GITHUB_ENV
echo "WRAPPER_CHECKSUM=$(sha256sum ./target/deploy/${{ env.WRAPPER_NAME }}.so | head -c 64)" >> $GITHUB_ENV
- name: Generate SBOM wrapper
uses: aquasecurity/trivy-action@master
Expand All @@ -70,14 +70,14 @@ jobs:
- name: Generate Checksum ui wrapper
run: |
echo "CHECKSUM_WRAPPER=$(sha256sum ./target/deploy/${{ env.UI_WRAPPER_NAME }}.so | head -c 64)" >> $GITHUB_ENV
echo "UI_WRAPPER_CHECKSUM=$(sha256sum ./target/deploy/${{ env.UI_WRAPPER_NAME }}.so | head -c 64)" >> $GITHUB_ENV
- name: Generate SBOM ui wrapper
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
format: 'cyclonedx'
output: '${{ env.WRAPPER_NAME }}-${{ github.ref_name }}-sbom.json'
output: '${{ env.UI_WRAPPER_NAME }}-${{ github.ref_name }}-sbom.json'

- name: Create Release
id: create_release
Expand Down

0 comments on commit e7b6172

Please sign in to comment.