Skip to content

Commit

Permalink
chroe: aaaaaaaaaaaaa
Browse files Browse the repository at this point in the history
  • Loading branch information
ZanyLeonic committed Mar 2, 2024
1 parent 60cf2ea commit 30eece7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build-game-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,15 @@ jobs:
run: |
mkdir -v -p build/web
cd $PROJECT_PATH
godot --headless --verbose --export-release "Web" ../build/web/index.html
godot --headless --verbose --export-release "Web" ../build/web/index.html &> output.txt
echo Reading build logs...
cat output.txt
if search="$(cat output.txt | grep 'ERROR:')"
then
exit 1
else
exit 0
fi ;
- name: Upload Artifact
uses: actions/upload-artifact@v1
with:
Expand Down

0 comments on commit 30eece7

Please sign in to comment.