mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 05:55:38 +00:00
XargonWan
3dc6b18833
Some checks failed
Build cooker / Building_RetroDECK (push) Has been cancelled
* Table top mode * Button Colour and tables columns * Bob does regex * Bob does regex2 * Updates from feedback * Stuff * Ensure funnction array being passed correctly * Array to String needed afterall * Cooker Test * Test build * Fixed Bios display issue * Fixed dialogue logging * Full Screen is back * gGent Orange BIOS * GDScript Logger POC * Try to create log folder * GDScript Logger POC (#956) * GDScript Logger POC * Try to create log folder * Ensure all_systems array is empty every time build_preset_list_options() is run - This prevents all_systems array from having multiple copies of all systems when run multiple times in the same session, which would cause make_preset_changes() to run build_preset_config() multiple times. * logs2.0 * Parked up for the night * Don't truncate the log file * Timestamp, fix append * Time for a break * restore godot logger, default is still bash * Added real milliseconds to log timestamp (thanks, monkeyx), typing fixes * Time for a break * Update godot.yml * Update godot.yml * Update godot.yml * Update godot.yml * Update godot.yml * Update godot.yml * Update godot.yml * Translations with POT! * Comment to test PR (#960) Co-authored-by: Rekku <rekku@retrodeck.net> --------- Co-authored-by: Rekku <rekku@retrodeck.net> Co-authored-by: WallK <wallykrasiy@gmail.com> Co-authored-by: MonkeyX <tim@monkeyx.net> Co-authored-by: icenine451 <benjamin.r.shelton@protonmail.com>
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}}
|
|
|