builds godot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: Manually build godot 2D

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

jobs:
  two-dimensions:
    name: Build ${{ inputs.ref }}
    uses: bend-n/godot-builds/.github/workflows/[email protected]
    with:
      ref: ${{ inputs.ref }}
      name: godot-2d
      build-name: bendn.2D
      modules-path: ./.github/2d-build-modules.py
      flags: ""
    secrets: inherit