Skip to content

fix: not support the minimum OS Version specified in the Info.plist (… #8

fix: not support the minimum OS Version specified in the Info.plist (…

fix: not support the minimum OS Version specified in the Info.plist (… #8

Workflow file for this run

name: XCode 26 Test
on:
push:
branches:
- xcode26
workflow_dispatch:
inputs:
version:
description: 'Release tag name (default mpv version)'
default: ''
jobs:
build:
permissions:
contents: write
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Show Xcode version
run: xcodebuild -version
- name: Show available SDKs
run: xcodebuild -showsdks
- name: Resolve Swift Package dependencies
run: |
xcodebuild -resolvePackageDependencies \
-project Demo/Demo-macOS/Demo-macOS.xcodeproj \
-scheme Demo-macOS
- name: Build for Release
id: build
run: |
xcodebuild -project Demo/Demo-macOS/Demo-macOS.xcodeproj \
-scheme Demo-macOS \
-configuration Release \
CODE_SIGN_IDENTITY="-" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO \
build
- name: Build Succeeded
run: |
echo "Build completed successfully."