From b742477df98e329494bae0c39a6c41a85b981f78 Mon Sep 17 00:00:00 2001 From: Leo Durrant Date: Sat, 2 Mar 2024 15:39:00 +0000 Subject: [PATCH] don't wanna fail on EVERY error --- .github/workflows/build-game-client.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-game-client.yml b/.github/workflows/build-game-client.yml index 5605d0c..6666dea 100644 --- a/.github/workflows/build-game-client.yml +++ b/.github/workflows/build-game-client.yml @@ -27,7 +27,7 @@ jobs: cd $PROJECT_PATH godot --headless --verbose --export-release "Web" ../build/web/index.html 2>&1 | tee output.txt echo Reading build logs... - if search="$(cat output.txt | grep 'ERROR:')" + if search="$(cat output.txt | grep 'ERROR: Project export')" then echo "Build failed!" exit 1