ci: Fix incorrect exit code
Some checks failed
lint/clippy Checking for common mistakes and opportunities for code improvement
build/linux Build for the target platform: linux
build/msvc Build for the target platform: msvc

The runner wouldn't properly exit with a failure code, so it always
looked like success in the UI.
This commit is contained in:
Lucas Schwiderski 2023-11-07 10:54:13 +01:00
parent db8194efec
commit f197b1944b
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8

View file

@ -47,4 +47,5 @@ if sh "$script"; then
notify 'success' "$context" "$desc"
else
notify 'failure' "$context" "$desc"
exit 1
fi