tools for exporting godot projects via Github Actions
Diffstat (limited to '.github/actions/export-windows/action.yml')
| -rw-r--r-- | .github/actions/export-windows/action.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/actions/export-windows/action.yml b/.github/actions/export-windows/action.yml index c5e0cf3..c12d77a 100644 --- a/.github/actions/export-windows/action.yml +++ b/.github/actions/export-windows/action.yml @@ -9,8 +9,10 @@ runs: - name: Windows Build run: | - mkdir -vp build/windows + echo "::group::Windows Build" + mkdir -p build/windows godot -v --export "Windows" ./build/windows/$NAME.exe + echo "::endgroup::" shell: bash - name: Upload |