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 2D

on:
  workflow_dispatch:
    inputs:
      ref:
        type: string
        description: which ref to build
        required: true
      release:
        type: string
        default: "yes"
        description: to make a release
        
jobs:
  two-dimensions:
    name: Build ${{ inputs.ref }}
    uses: bend-n/godot-builds/.github/workflows/reusable-build.yml@main
    with:
      ref: ${{ inputs.ref }}
      name: godot-2d
      build-name: bendn.2D
      modules-path: ./.github/2d-build-modules.py
      flags: ""
      make-release: ${{ inputs.release }}
    secrets: inherit