| -rw-r--r-- | .github/workflows/export.yml | 13 | ||||
| -rw-r--r-- | .gitignore | 3 |
2 files changed, 6 insertions, 10 deletions
diff --git a/.github/workflows/export.yml b/.github/workflows/export.yml index 04e2aaf..12626fa 100644 --- a/.github/workflows/export.yml +++ b/.github/workflows/export.yml @@ -4,28 +4,23 @@ on: - main jobs: - # job id, can be anything export_game: permissions: write-all # can be read-all, write-all, or read-write # Always use ubuntu-latest for this action runs-on: ubuntu-latest - # Job name, can be anything name: export steps: - # Always include the checkout step so that - # your project is available for Godot to export - name: checkout uses: actions/[email protected] - # Ensure that you get the entire project history - with: + with: # Ensure that you get the entire project history fetch-depth: 0 + - name: export game - # Use latest version (see releases for all versions) uses: firebelley/[email protected] with: # Defining all the required inputs - godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/3.4.2/Godot_v3.4.2-stable_linux_headless.64.zip - godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/3.4.2/Godot_v3.4.2-stable_export_templates.tpz + godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/3.5/beta5/Godot_v3.5-beta5_linux_headless.64.zip + godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/3.5/beta5/Godot_v3.5-beta5_export_templates.tpz relative_project_path: ./ env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -1,2 +1,3 @@ .import -export_presets.cfg + +exports/ |