Skip to content

Commit

Permalink
ci: do fail on error
Browse files Browse the repository at this point in the history
There was a broken `&&` chain here. I ❤️ the ease of error handling in
shell scripts</s>.

Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Dec 14, 2023
1 parent 25fed19 commit dd03967
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ jobs:
# These are already tested as part of the `sdk-artifacts` matrix
sed -i '/^\(installer\|mingit\)\/$/d' releaseable.txt
fi &&
define_matrix artifacts releaseable.txt touched.txt artifacts.txt
define_matrix artifacts releaseable.txt touched.txt artifacts.txt ||
exit $?
test -z "$(git diff ${{github.event.pull_request.base.sha}}.. -- check-for-missing-dlls.sh)" ||
echo "check-for-missing-dlls=true" >>$GITHUB_OUTPUT
Expand Down

0 comments on commit dd03967

Please sign in to comment.