tools for exporting godot projects via Github Actions
Diffstat (limited to '.github/actions/export/action.yml')
| -rw-r--r-- | .github/actions/export/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/export/action.yml b/.github/actions/export/action.yml index 0432fef..87e0b57 100644 --- a/.github/actions/export/action.yml +++ b/.github/actions/export/action.yml @@ -39,7 +39,7 @@ runs: mkdir -vp build/${{ inputs.platform }} n="${{ env.NAME }}" [[ -n "${{ inputs.name }}" ]] && n="${{ inputs.name }}" - godot -v --headless "$export" "${{ steps.n.outputs.export-name }}" "./build/${{ inputs.platform }}/$n.${{ inputs.extension }}" + timeout 30m godot -v --headless "$export" "${{ steps.n.outputs.export-name }}" "./build/${{ inputs.platform }}/$n.${{ inputs.extension }}" echo "::endgroup::" if [[ -f .github/post_export ]]; then |