Skip to content

Commit

Permalink
ci: don't upload debug build to cf, too big, and a bunch of fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
julie-dujardin committed Aug 3, 2024
1 parent 5beac02 commit 4a8120d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/compile_godot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@ jobs:
echo "DEBUG_HASH=${debug_hash[1]}" >> $GITHUB_ENV
# Only Upload the engine if it doesn't exist already
curl --head --fail https://godot-engine.static.ilus.pw/release_${{ env.GODOT_VERSION }}_${{ env.RELEASE_HASH }}/index.side.wasm
if [ $? -ne 0 ]; then
curl --head https://godot-engine.static.ilus.pw/release_${{ env.GODOT_VERSION }}_${{ env.RELEASE_HASH }}/index.side.wasm || EXIT_CODE=$?
if [ -n "$EXIT_CODE" ]; then
echo "UPLOAD_ENGINE=true" >> $GITHUB_ENV
else
echo "UPLOAD_ENGINE=false" >> $GITHUB_ENV
Expand Down

0 comments on commit 4a8120d

Please sign in to comment.