diff --git a/.github/workflows/manual-build-apple.yml b/.github/workflows/manual-build-apple.yml new file mode 100644 index 00000000..79281beb --- /dev/null +++ b/.github/workflows/manual-build-apple.yml @@ -0,0 +1,15 @@ +name: Manual Build Apple + +on: + workflow_dispatch: + inputs: + ref: + description: "Git ref (branch, tag, or commit) to build" + required: true + default: main + +jobs: + call_build_apple: + uses: ./.github/workflows/build-apple.yaml + with: + ref: ${{ github.event.inputs.ref }}