mirror of
https://github.com/tonytins/citylimits
synced 2025-06-25 09:24:44 -04:00
Godot Github Actions
This commit is contained in:
parent
0ed6b75520
commit
d8bbaaf80b
3 changed files with 184 additions and 45 deletions
32
.github/workflows/godot.yml
vendored
Normal file
32
.github/workflows/godot.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
name: Build Godot Project
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main, develop, "releases/**"]
|
||||
pull_request:
|
||||
branches: [main, develop, "releases/**"]
|
||||
|
||||
jobs:
|
||||
Godot:
|
||||
timeout-minutes: 15
|
||||
continue-on-error: true
|
||||
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: My Simulation
|
||||
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 }}
|
Loading…
Add table
Add a link
Reference in a new issue