From dec4d12c9cd6edcdf292355837966f2d110295fc Mon Sep 17 00:00:00 2001 From: MonkeyX Date: Fri, 26 Jul 2024 20:12:21 +0100 Subject: [PATCH] Create Godot.yml --- .github/workflows/main.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..8734dcbd --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,28 @@ +name: Building a mOnKeyX Project + +on: + push: {} + pull_request: {} + +jobs: + Godot: + runs-on: ubuntu-latest + strategy: + matrix: + platform: [linux, windows, mac] + 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 }}