From 9caffee9b0c29a78ad771f6a9d13cdb2a6b4261f Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Tue, 27 May 2025 18:38:10 +0100 Subject: [PATCH] more debugging --- .github/actions/build/action.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index d19e51f9..82f49a49 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -78,11 +78,14 @@ runs: --log-format raw then echo "incrementing ok from $ok" - ((ok++)) + (( ok++ )) + echo "incremented ok to $ok" else echo "incrementing error from $error" - ((error++)) + (( error++ )) + echo "incremented error to $error" if [ -z "$keep_going_flag" ]; then + echo "Failing fast!" exit 1 fi fi