2024-07-26 19:12:21 +00:00
|
|
|
name: Building a mOnKeyX Project
|
|
|
|
|
|
|
|
on:
|
2024-07-26 19:32:00 +00:00
|
|
|
push:
|
2024-07-26 19:35:10 +00:00
|
|
|
|
2024-07-26 19:32:00 +00:00
|
|
|
workflow_dispatch:
|
2024-07-26 19:12:21 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
Godot:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
platform: [linux, windows, mac]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
lfs: true
|
|
|
|
- name: Build
|
|
|
|
id: build
|
2024-07-26 19:49:34 +00:00
|
|
|
uses: krynv/build-godot-action@v1.4.1
|
2024-07-26 19:12:21 +00:00
|
|
|
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 }}
|