RetroDECK/.github/workflows/godot.yml

29 lines
637 B
YAML
Raw Normal View History

2024-07-26 20:00:45 +00:00
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 }}