Skip to content

Commit

Permalink
don't wanna fail on EVERY error
Browse files Browse the repository at this point in the history
  • Loading branch information
ZanyLeonic committed Mar 2, 2024
1 parent c801882 commit b742477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-game-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b742477

Please sign in to comment.