mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-23 22:45:38 +00:00
3bf76b059d
Changes to be committed: modified: .github/workflows/build-configurator.yml
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
|
|
name: Configurator Build
|
|
|
|
on:
|
|
push:
|
|
branches: [feat/godot-configurator]
|
|
tags:
|
|
- "v*-test"
|
|
pull_request:
|
|
branches: [feat/godot-configurator]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3.3.0
|
|
- name : exportGame
|
|
uses: firebelley/godot-export@v5.2.1
|
|
with:
|
|
cache: true
|
|
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/configurator
|
|
relative_export_path: ../../
|
|
archive_output: true
|
|
|
|
- name: Upload Linux artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Linux Configurator
|
|
path: /home/runner/work/linux.zip
|
|
|
|
- name: Upload Windows artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Windows Configurator
|
|
path: /home/runner/work/windows.zip |