mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-28 00:25:42 +00:00
Update godot.yml
This commit is contained in:
parent
3d0c1a2a1f
commit
356c7826a4
28
.github/workflows/godot.yml
vendored
Normal file
28
.github/workflows/godot.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
name: Building a mOnKeyX Project
|
||||||
|
|
||||||
|
on:
|
||||||
|
push: {}
|
||||||
|
pull_request: {}
|
||||||
|
workflow_dispatch: {}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Godot:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
platform: [linux, windows, mac]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4.1.4
|
||||||
|
with:
|
||||||
|
lfs: true
|
||||||
|
- name: Build
|
||||||
|
id: build
|
||||||
|
with:
|
||||||
|
name: example
|
||||||
|
preset: ${{ matrix.platform }}
|
||||||
|
debugMode: "true"
|
||||||
|
- name: Upload Artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: Client - ${{ matrix.platform }}
|
||||||
|
path: ${{ github.workspace }}/${{ steps.build.outputs.build }}
|
Loading…
Reference in a new issue