From 7d8e2c7e207599861b2debe242391be6e8b2efd8 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Thu, 22 Feb 2024 10:14:35 +0200 Subject: [PATCH] ci: add macos version selection to manual build workflow --- .github/workflows/manual-build.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/manual-build.yml b/.github/workflows/manual-build.yml index 34514bb3..3d348200 100644 --- a/.github/workflows/manual-build.yml +++ b/.github/workflows/manual-build.yml @@ -16,6 +16,15 @@ on: - None - Intel - 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: description: 'macOS deployment version for Intel' type: string @@ -32,7 +41,7 @@ on: jobs: build: name: ${{ inputs.target }} - runs-on: macos-13 + runs-on: ${{ inputs.runner-os }} steps: - uses: actions/checkout@v4