1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 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