Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
fix flipped boolean (#173)
Browse files Browse the repository at this point in the history
Signed-off-by: anderssonw <[email protected]>
Co-authored-by: Youssef Bel Mekki <[email protected]>
  • Loading branch information
anderssonw and ybelMekk authored Apr 19, 2023
1 parent 424d307 commit 276c968
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ attestVerify() {

runSalsa() {
echo "---------- Running Salsa for repository: $REPO_NAME ----------"
if [ "$INPUT_VERIFY_ATTESTATION" = "true" ]; then
if [ "$INPUT_VERIFY_ATTESTATION" = "false" ]; then
scan && attest
elif [ "$INPUT_VERIFY_ATTESTATION" = "false" ]; then
elif [ "$INPUT_VERIFY_ATTESTATION" = "true" ]; then
scan && attest && attestVerify
fi

Expand Down

0 comments on commit 276c968

Please sign in to comment.