Create manual-build-apple.yml

This commit is contained in:
Kyle Hekkers
2025-10-29 06:39:29 +00:00
committed by GitHub
parent 36d6cb5eff
commit 17af3347d1

View File

@@ -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 }}