From efe5805e6e98a17125e2b5cc7968364d279b4422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Gro=C3=9F?= Date: Thu, 17 Aug 2023 12:53:42 +0200 Subject: [PATCH] Add Github Build Workflow --- .github/workflows/build.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..0459bff --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,28 @@ +name: Build Godot Project + +on: + push: {} + pull_request: {} + +jobs: + Godot: + runs-on: ubuntu-latest + strategy: + matrix: + platform: [linux, windows] + 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