tools for exporting godot projects via Github Actions
Diffstat (limited to '.github/actions/export-web/action.yml')
| -rw-r--r-- | .github/actions/export-web/action.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/actions/export-web/action.yml b/.github/actions/export-web/action.yml index 7045531..f8f80d8 100644 --- a/.github/actions/export-web/action.yml +++ b/.github/actions/export-web/action.yml @@ -35,7 +35,10 @@ runs: - name: Add extra files if: steps.get-export-name.outputs.export-name run: | - [[ -f .github/post_export ]] && chmod +x .github/post_export && ./.github/post_export web + if [[ -f .github/post_export ]]; then + chmod +x .github/post_export + ./.github/post_export web + fi shell: bash - name: Upload |