Skip to content

Commit

Permalink
Continue w/o error if manifest unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Jul 11, 2024
1 parent c4f7f8a commit b3ae329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ runs:
id: digest_old
shell: bash
run: |
DIGEST=$(docker manifest inspect ${{ steps.vars.outputs.tags }} | jq '.manifests[0].digest' || '')
DIGEST=$(docker manifest inspect ${{ steps.vars.outputs.tags }} || '' | jq '.manifests[0].digest')
echo "digest=${DIGEST}" >> $GITHUB_OUTPUT
# If a build is required, then checkout, login, build and push!
Expand Down

0 comments on commit b3ae329

Please sign in to comment.