mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-26 07:55:37 +00:00
On branch feat/godot-configurator
Changes to be committed: new file: .github/workflows/buid-gdc.yml
This commit is contained in:
parent
fcac2b7de2
commit
e8c9cf84b4
28
.github/workflows/buid-gdc.yml
vendored
Normal file
28
.github/workflows/buid-gdc.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
name: Build Godot Project
|
||||
|
||||
on:
|
||||
push: {}
|
||||
pull_request: {}
|
||||
|
||||
jobs:
|
||||
Godot:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
platform: [linux]
|
||||
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 }}
|
Loading…
Reference in a new issue