From e8c9cf84b42641df6bec4031251777635793c5a9 Mon Sep 17 00:00:00 2001 From: monkeyx-net Date: Mon, 5 Aug 2024 19:11:59 +0100 Subject: [PATCH] On branch feat/godot-configurator Changes to be committed: new file: .github/workflows/buid-gdc.yml --- .github/workflows/buid-gdc.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/buid-gdc.yml diff --git a/.github/workflows/buid-gdc.yml b/.github/workflows/buid-gdc.yml new file mode 100644 index 00000000..08af9f1d --- /dev/null +++ b/.github/workflows/buid-gdc.yml @@ -0,0 +1,28 @@ +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 }} \ No newline at end of file