builds godot
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..5f1ef2f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,37 @@ +name: Build godot 2d + +on: workflow_dispatch + +jobs: + build-templates: + runs-on: ubuntu-18.04 + steps: + - name: Build templates + uses: bend-n/godot-2d-builds/.github/actions/build-godot@main + with: + branch: 3.5 + tools: no + platform: x11 + target: release + + build-editor: + runs-on: ubuntu-18.04 + steps: + - name: Build editor + uses: bend-n/godot-2d-builds/.github/actions/build-godot@main + with: + branch: 3.5 + tools: yes + platform: x11 + target: release + + build-headless: + runs-on: ubuntu-18.04 + steps: + - name: Build headless + uses: bend-n/godot-2d-builds/.github/actions/build-godot@main + with: + branch: 3.5 + tools: yes + platform: server + target: release_debug |