From 3a7c594d7c0a674e7a492d0ea27bb3ef4db7db5a Mon Sep 17 00:00:00 2001 From: NimBold Date: Wed, 10 Jun 2026 23:45:46 +0330 Subject: [PATCH] ci: restore macOS SDK 26 check per project requirements - Ensure SDK version is at least 26 to avoid UI issues with older SDKs --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f94bc2c..49dd619 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ permissions: jobs: macos-arm64-dmg: name: Build macOS ARM64 DMG - runs-on: macos-14 + runs-on: macos-26 steps: - name: Check out repository @@ -49,14 +49,14 @@ jobs: xcode-select -p xcrun --sdk macosx --show-sdk-version - - name: Verify macOS 14+ SDK + - name: Verify macOS 26+ SDK shell: bash run: | SDK_VERSION="$(xcrun --sdk macosx --show-sdk-version)" SDK_MAJOR="${SDK_VERSION%%.*}" - if [[ "$SDK_MAJOR" -lt 14 ]]; then - echo "Expected at least macOS 14 SDK, got macOS $SDK_VERSION" >&2 + if [[ "$SDK_MAJOR" -lt 26 ]]; then + echo "Expected at least macOS 26 SDK, got macOS $SDK_VERSION" >&2 exit 1 fi