From 9bcb07f8469105a63c91a045b94000218cc8ae88 Mon Sep 17 00:00:00 2001 From: stephenminakian Date: Thu, 3 Jul 2025 09:38:15 -0600 Subject: [PATCH] Debug sbom upload and security tag --- .gitea/workflows/ci-cd.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/ci-cd.yml b/.gitea/workflows/ci-cd.yml index 9990be6..dfffbe3 100644 --- a/.gitea/workflows/ci-cd.yml +++ b/.gitea/workflows/ci-cd.yml @@ -77,8 +77,6 @@ jobs: build: name: 🏗️ Build & Push Image runs-on: ubuntu-latest - outputs: - digest: ${{ steps.build.outputs.digest }} needs: [test, security] if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' outputs: @@ -149,7 +147,7 @@ jobs: sudo mv oras /usr/local/bin/ # Get the image digest from the build step - IMAGE_DIGEST="${{ steps.build.outputs.digest }}" + IMAGE_DIGEST="${{ steps.build.outputs.image-digest }}" # Attach SBOM to the specific image digest oras attach ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@${IMAGE_DIGEST} \