Skip to content

Commit da22f99

Browse files
committed
chore: add Xcode setup to iOS build workflows
- Introduced Xcode setup step in both iOS build workflows to specify version 16.4 using the maxim-lobanov/setup-xcode action.
1 parent 4933e7d commit da22f99

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/ios-build.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ jobs:
5050
- uses: actions/checkout@v4
5151
- uses: oven-sh/setup-bun@v2
5252

53+
- name: Setup Xcode
54+
uses: maxim-lobanov/setup-xcode@v1
55+
with:
56+
xcode-version: 16.4
57+
5358
- name: Install npm dependencies (bun)
5459
run: bun install
5560

@@ -93,6 +98,11 @@ jobs:
9398
- uses: actions/checkout@v4
9499
- uses: oven-sh/setup-bun@v2
95100

101+
- name: Setup Xcode
102+
uses: maxim-lobanov/setup-xcode@v1
103+
with:
104+
xcode-version: 16.4
105+
96106
- name: Install npm dependencies (bun)
97107
run: bun install
98108

0 commit comments

Comments
 (0)