mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 22:15:39 +00:00
27 lines
746 B
YAML
27 lines
746 B
YAML
|
name: Building a mOnKeyX Project
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ feat/godot-uk ]
|
||
|
pull_request:
|
||
|
branches: [ feat/godot-uk ]
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- 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
|
||
|
relative_project_path: tools/rd-config-test/
|
||
|
create_release: true
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||
|
|