2024-07-26 20:00:45 +00:00
|
|
|
name: Building a mOnKeyX Project
|
|
|
|
|
|
|
|
on:
|
2024-07-26 20:39:07 +00:00
|
|
|
push:
|
|
|
|
branches: [ feat/godot-uk ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ feat/godot-uk ]
|
|
|
|
workflow_dispatch:
|
2024-07-26 20:00:45 +00:00
|
|
|
|
|
|
|
jobs:
|
2024-07-26 20:39:07 +00:00
|
|
|
build:
|
|
|
|
|
2024-07-26 20:43:37 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-07-26 20:39:07 +00:00
|
|
|
|
2024-07-26 20:00:45 +00:00
|
|
|
steps:
|
2024-07-26 20:44:56 +00:00
|
|
|
- uses: actions/checkout@v3
|
2024-07-26 20:39:07 +00:00
|
|
|
- name : exportGame
|
|
|
|
uses: firebelley/godot-export@v5.2.1
|
|
|
|
with:
|
|
|
|
godot_executable_download_url: https://download.tuxfamily.org/godotengine/4.2.2/Godot_v4.2.2-stable_linux.x86_64.zip
|
|
|
|
godot_export_templates_download_url: https://download.tuxfamily.org/godotengine/4.2.2/Godot_v4.2.2-stable_export_templates.tpz
|
2024-07-26 20:45:51 +00:00
|
|
|
relative_project_path: tools/rd-config-test/
|
2024-07-26 20:39:07 +00:00
|
|
|
create_release: true
|
|
|
|
env:
|
2024-07-26 20:39:56 +00:00
|
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
2024-07-26 20:39:07 +00:00
|
|
|
|