mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-23 14:35:39 +00:00
30 lines
661 B
YAML
30 lines
661 B
YAML
name: Building a mOnKeyX Project
|
|
|
|
on:
|
|
push:
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
Godot:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
platform: [linux, windows, mac]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
lfs: true
|
|
- name: Build
|
|
id: build
|
|
uses: manleydev/build-godot-action@v1.4.1
|
|
with:
|
|
name: example
|
|
preset: ${{ matrix.platform }}
|
|
debugMode: "true"
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Client - ${{ matrix.platform }}
|
|
path: ${{ github.workspace }}/${{ steps.build.outputs.build }}
|