builds godot
make manual build do both
| -rw-r--r-- | .github/workflows/manual-build.yml | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/.github/workflows/manual-build.yml b/.github/workflows/manual-build.yml index 99751e1..9afe8ef 100644 --- a/.github/workflows/manual-build.yml +++ b/.github/workflows/manual-build.yml @@ -1,4 +1,4 @@ -name: Manually build godot 2d +name: Manually build godot on: workflow_dispatch: @@ -9,9 +9,18 @@ on: required: true jobs: - manual-build: - name: Build ${{ inputs.ref }} + 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 |