Skip to content
This repository has been 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 <wandersson.98@gmail.com>
Co-authored-by: Youssef Bel Mekki <38552193+ybelMekk@users.noreply.github.com>
  • Loading branch information
anderssonw and ybelMekk committed 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.