Skip to content

Commit cf41598

Browse files
authored
Merge pull request #138 from Cysharp/feature/iOSBuildTargetVersion
Set iOS target OS version to 12.0
2 parents 8050325 + f17f699 commit cf41598

File tree

8 files changed

+5
-1
lines changed

8 files changed

+5
-1
lines changed

.github/workflows/build-natives.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,8 @@ jobs:
252252
- uses: Cysharp/Actions/.github/actions/checkout@main
253253
- run: rustup target add x86_64-apple-ios
254254
- run: cargo build --target x86_64-apple-ios --profile ${{ env._RUST_BUILD_CONFIG == 'debug' && 'dev' || env._RUST_BUILD_CONFIG }}
255+
env:
256+
IPHONEOS_DEPLOYMENT_TARGET: 12.0
255257
- uses: Cysharp/Actions/.github/actions/upload-artifact@main
256258
with:
257259
name: ios-x64
@@ -272,6 +274,8 @@ jobs:
272274
- uses: Cysharp/Actions/.github/actions/checkout@main
273275
- run: rustup target add aarch64-apple-ios
274276
- run: cargo build --target aarch64-apple-ios --profile ${{ env._RUST_BUILD_CONFIG == 'debug' && 'dev' || env._RUST_BUILD_CONFIG }}
277+
env:
278+
IPHONEOS_DEPLOYMENT_TARGET: 12.0
275279
- uses: Cysharp/Actions/.github/actions/upload-artifact@main
276280
with:
277281
name: ios-arm64
@@ -398,7 +402,7 @@ jobs:
398402
if: ${{ inputs.update-unity-native && (inputs.build-only-linux && needs.build-dotnet.result == 'success' || success()) }}
399403
needs: [ build-dotnet ]
400404
permissions:
401-
contents: read
405+
contents: write
402406
runs-on: ubuntu-24.04
403407
timeout-minutes: 15
404408
steps:

0 commit comments

Comments
 (0)