Skip to content

Commit 344e818

Browse files
committed
Explicitly select xcode 16 in ios build action
1 parent c64294d commit 344e818

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build-ios.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ jobs:
1616
os: [macos-14]
1717

1818
steps:
19-
- name: check Xcode version
20-
run: /usr/bin/xcodebuild -version
21-
2219
- name: Check out Git repository
2320
uses: actions/checkout@v3
2421

22+
- name: Select Xcode 16
23+
run: sudo xcode-select -s /Applications/Xcode_16.0.app
24+
25+
- name: Confirm Xcode version
26+
run: xcodebuild -version
27+
2528
- name: Install Node.js, NPM and Yarn
2629
uses: actions/setup-node@v3
2730
with:

0 commit comments

Comments
 (0)