Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
pkdawson committed Jun 30, 2024
1 parent 3dc1d20 commit 950115e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/gdext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -318,13 +318,14 @@ jobs:
with:
path: doc/examples/GdsGameProject

# TODO: check output for unexpected errors
- name: Export Debug
shell: bash
run: |
cd $GAMEDIR
$GODOT --headless --export-debug $RUNNER_OS
cd export
./${{ matrix.exe }} --headless --quit-after 10
./${{ matrix.exe }} --headless --quit-after 10 || true
rm -rf *
- name: Export Release
Expand All @@ -333,7 +334,7 @@ jobs:
cd $GAMEDIR
$GODOT --headless --export-release $RUNNER_OS
cd export
./${{ matrix.exe }} --headless --quit-after 10
./${{ matrix.exe }} --headless --quit-after 10 || true
test:
needs: [package]
Expand Down

0 comments on commit 950115e

Please sign in to comment.