RetroDECK/.github/workflows/buid-gdc.yml
monkeyx-net e8c9cf84b4 On branch feat/godot-configurator
Changes to be committed:
	new file:   .github/workflows/buid-gdc.yml
2024-08-05 19:11:59 +01:00

28 lines
637 B
YAML

name: Build Godot Project
on:
push: {}
pull_request: {}
jobs:
Godot:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [linux]
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 }}