RetroDECK/.github/workflows/go-simple.yml
monkeyx-net f71f5a95ca On branch feat/godot-configurator
Changes to be committed:
	modified:   ../../.github/workflows/go-simple.yml
2024-08-05 22:34:47 +01:00

29 lines
728 B
YAML

name: Build Godot Project
on:
push: {}
pull_request: {}
jobs:
Godot:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [linux]
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Build
id: build
uses: krynv/build-godot-action@v1.0.0
with:
name: gd-test
preset: ${{ matrix.platform }}
projectDir: "tools/configurator" # The project in the `test` directory will be built
debugMode: "true"
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: Client - ${{ matrix.platform }}
path: ${{ github.workspace }}/${{ steps.build.outputs.build }}