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