mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-12-02 02:25:41 +00:00
29 lines
732 B
YAML
29 lines
732 B
YAML
|
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: gd-test
|
||
|
preset: ${{ matrix.platform }}
|
||
|
projectDir: "tools/configurator" # The project in the `test` directory will be built
|
||
|
debugMode: "true"
|
||
|
- name: Upload Artifact
|
||
|
uses: actions/upload-artifact@v2
|
||
|
with:
|
||
|
name: Client - ${{ matrix.platform }}
|
||
|
path: ${{ github.workspace }}/${{ steps.build.outputs.build }}
|