Create Godot.yml

This commit is contained in:
MonkeyX 2024-07-26 20:12:21 +01:00 committed by GitHub
parent 90346ee7f5
commit dec4d12c9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

28
.github/workflows/main.yml vendored Normal file
View file

@ -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 }}