From e7b6172db8100ca65b90af21716b07da3f0c0b22 Mon Sep 17 00:00:00 2001 From: Britt Cyr Date: Tue, 12 Nov 2024 11:02:39 -0500 Subject: [PATCH] Cleanup verifiable build action (#278) --- .github/workflows/ci-verifiable-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-verifiable-build.yml b/.github/workflows/ci-verifiable-build.yml index b17e15662..8ad3b4397 100644 --- a/.github/workflows/ci-verifiable-build.yml +++ b/.github/workflows/ci-verifiable-build.yml @@ -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 @@ -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