builds godot
Diffstat (limited to '.github/workflows/manual-build.yml')
-rw-r--r--.github/workflows/manual-build.yml20
1 files changed, 5 insertions, 15 deletions
diff --git a/.github/workflows/manual-build.yml b/.github/workflows/manual-build.yml
index bd96fb2..8f04335 100644
--- a/.github/workflows/manual-build.yml
+++ b/.github/workflows/manual-build.yml
@@ -3,25 +3,15 @@ name: Manually build godot 2d
on:
workflow_dispatch:
inputs:
- branch:
- type: choice
- description: which branch to build
+ ref:
+ type: string
+ description: which ref to build
required: true
- options:
- - "2.0"
- - "2.1"
- - "3.0"
- - "3.1"
- - "3.2"
- - "3.3"
- - "3.4"
- - "3.5"
- - "3.x"
jobs:
manual-build:
- name: Build ${{ inputs.branch }}
+ name: Build ${{ inputs.ref }}
uses: bend-n/godot-2d-builds/.github/workflows/reusable-build.yml@main
with:
- branch: ${{ inputs.branch }}
+ ref: ${{ inputs.ref }}
secrets: inherit