mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
ci: add macos version selection to manual build workflow
This commit is contained in:
parent
cbfe4a4817
commit
7d8e2c7e20
1 changed files with 10 additions and 1 deletions
11
.github/workflows/manual-build.yml
vendored
11
.github/workflows/manual-build.yml
vendored
|
@ -16,6 +16,15 @@ on:
|
||||||
- None
|
- None
|
||||||
- Intel
|
- Intel
|
||||||
- ARM
|
- ARM
|
||||||
|
runner-os:
|
||||||
|
description: 'Runner macOS version'
|
||||||
|
default: macos-13
|
||||||
|
type: choice
|
||||||
|
options:
|
||||||
|
- macos-11
|
||||||
|
- macos-12
|
||||||
|
- macos-13
|
||||||
|
- macos-14
|
||||||
min-os-ver-intel:
|
min-os-ver-intel:
|
||||||
description: 'macOS deployment version for Intel'
|
description: 'macOS deployment version for Intel'
|
||||||
type: string
|
type: string
|
||||||
|
@ -32,7 +41,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: ${{ inputs.target }}
|
name: ${{ inputs.target }}
|
||||||
runs-on: macos-13
|
runs-on: ${{ inputs.runner-os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue