Skip to content

Commit

Permalink
Fail on error
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarbuzzi committed Dec 12, 2024
1 parent cb81afc commit 87e58c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actions/testmo-run-submit-thread/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
echo "Results folder '$RESULTS_FOLDER' does not exist in working directory:"
ls -A
echo "::warning title=$GITHUB_JOB - MISSING RESULTS FOLDER::Results folder does not exist in working directory"
exit
exit 1
fi
# verify results folder contains XML result files
Expand All @@ -51,7 +51,7 @@ runs:
echo "Results folder '$RESULTS_FOLDER' does not contain any XML result files:"
ls -A "$RESULTS_FOLDER"
echo "::warning title=$GITHUB_JOB - MISSING RESULT FILES::Results folder did not contain any XML result files"
exit
exit 1
fi
# generate resources file if necessary
Expand Down

0 comments on commit 87e58c7

Please sign in to comment.