builds godot
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
name: Manually build godot

on:
  workflow_dispatch:
    inputs:
      ref:
        type: string
        description: which ref to build
        required: true

jobs:
  two-dimensions:
    name: Build ${{ inputs.ref }} (2d)
    uses: bend-n/godot-builds/.github/workflows/reusable-build.yml@main
    with:
      ref: ${{ inputs.ref }}
    secrets: inherit
  all-dimensions:
    name: Build ${{ inputs.ref }} (normal)
    uses: bend-n/godot-builds/.github/workflows/reusable-build.yml@main
    with:
      ref: ${{ inputs.ref }}
      name: godot
      build-name: normal
      modules-path: ./.github/normal-build-modules.py
    secrets: inherit