online multiplayer chess game (note server currently down)
Diffstat (limited to '.github/workflows/export.yml')
| -rw-r--r-- | .github/workflows/export.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/export.yml b/.github/workflows/export.yml new file mode 100644 index 0000000..12626fa --- /dev/null +++ b/.github/workflows/export.yml @@ -0,0 +1,26 @@ +on: + push: + branches: + - main + +jobs: + 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 + name: export + steps: + - name: checkout + uses: actions/[email protected] + with: # Ensure that you get the entire project history + fetch-depth: 0 + + - name: export game + uses: firebelley/[email protected] + with: + # Defining all the required inputs + 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 }} |