On branch feat/godot-configurator

Changes to be committed:
	new file:   ../../.github/workflows/go-simple.yml
This commit is contained in:
monkeyx-net 2024-08-05 22:11:14 +01:00
parent 065f40e5e9
commit 7b5f99d81d

29
.github/workflows/go-simple.yml vendored Normal file
View file

@ -0,0 +1,29 @@
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: 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 }}