From e296fe2fdc7244759c7a4f5608539c1aa63252c9 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Tue, 27 May 2025 18:30:15 +0100 Subject: [PATCH] Revert "ci: fix bash increment syntax" This reverts commit 67ca549ff5702d46946dc1b2e9fc5c938f74c78d. --- .github/actions/build/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 8afaefaf..bcc12a12 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -77,9 +77,9 @@ runs: --print-build-logs \ --log-format raw then - $((ok++)) + ((ok++)) else - $((error++)) + ((error++)) if [ -z "$keep_going_flag" ]; then exit 1 fi