From b3c3b09b35f6f6e7bf881b6234963e92ae6df3aa Mon Sep 17 00:00:00 2001 From: Brandon Wilson Date: Thu, 22 Aug 2024 16:06:31 -0500 Subject: [PATCH] fold --- .github/workflows/deploy-worker.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-worker.yml b/.github/workflows/deploy-worker.yml index cf446b6..a685c37 100644 --- a/.github/workflows/deploy-worker.yml +++ b/.github/workflows/deploy-worker.yml @@ -148,7 +148,8 @@ jobs: id: update-predicate run: | uri="git+https://github.com/${{ github.event.inputs.repo }}@refs/heads/${{ github.event.inputs.branch }}" - echo 'predicate=$(echo '${{ steps.generate-build-provenance-predicate.outputs.predicate }}' | jq ".resolvedDependencies = [{\"uri\": \"$uri\", \"digest\": {\"gitCommit\": \"${{ github.event.inputs.commit }}\"}}]")' >> $GITHUB_OUTPUT + predicate=$(echo '${{ steps.generate-build-provenance-predicate.outputs.predicate }}' | jq -c ".resolvedDependencies = [{\"uri\": \"$uri\", \"digest\": {\"gitCommit\": \"${{ github.event.inputs.commit }}\"}}]") + echo "predicate=$predicate" >> $GITHUB_OUTPUT - uses: actions/attest@2da0b136720d14f01f4dbeeafd1d5a4d76cbe21d # v1.4.0 id: attest