From 356c7826a410063e4e75d3da1357932966ffcb28 Mon Sep 17 00:00:00 2001 From: MonkeyX Date: Fri, 26 Jul 2024 21:00:45 +0100 Subject: [PATCH] Update godot.yml --- .github/workflows/godot.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/godot.yml diff --git a/.github/workflows/godot.yml b/.github/workflows/godot.yml new file mode 100644 index 00000000..d91da59f --- /dev/null +++ b/.github/workflows/godot.yml @@ -0,0 +1,28 @@ +name: Building a mOnKeyX Project + +on: + push: {} + pull_request: {} + workflow_dispatch: {} + +jobs: + Godot: + runs-on: ubuntu-latest + strategy: + matrix: + platform: [linux, windows, mac] + steps: + - uses: actions/checkout@v4.1.4 + with: + lfs: true + - name: Build + id: build + with: + name: example + preset: ${{ matrix.platform }} + debugMode: "true" + - name: Upload Artifact + uses: actions/upload-artifact@v4 + with: + name: Client - ${{ matrix.platform }} + path: ${{ github.workspace }}/${{ steps.build.outputs.build }}