builds godot
Diffstat (limited to '.github/workflows/manual-build-normal.yml')
| -rw-r--r-- | .github/workflows/manual-build-normal.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/manual-build-normal.yml b/.github/workflows/manual-build-normal.yml new file mode 100644 index 0000000..f58e373 --- /dev/null +++ b/.github/workflows/manual-build-normal.yml @@ -0,0 +1,24 @@ +name: Manually build godot normal + +on: + workflow_dispatch: + inputs: + ref: + type: string + description: which ref to build + required: true + # turn on when the godot5 is in dev + # schedule: + # - cron: '30 20 * * *' + +jobs: + all-dimensions: + name: Build ${{ inputs.ref }} + uses: bend-n/godot-builds/.github/workflows/[email protected] + with: + ref: ${{ inputs.ref }} + name: godot + build-name: bendn + modules-path: ./.github/normal-build-modules.py + flags: "" + secrets: inherit |