fix(run): exit with correct exit code (#58)

This commit is contained in:
Gabriel Torcat
2025-08-09 19:35:27 +02:00
committed by GitHub
parent 98c93442bb
commit a8367219b3

3
run.sh
View File

@@ -71,3 +71,6 @@ echo "version=$(jq -r '.[0].version' $CONTEXT)" >>$GITHUB_OUTPUT
# Pass exit code to the next step # Pass exit code to the next step
echo "exit_code=$exit_code" >>$GITHUB_OUTPUT echo "exit_code=$exit_code" >>$GITHUB_OUTPUT
# Exit with git-cliff exit_code
exit $exit_code