Skip to content

Commit 32f851f

Browse files
fix: correct DEVELOPER_DIR path and ensure proper environment variable usage in iOS harness workflow
1 parent 634136b commit 32f851f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/test-ios-harness.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ env:
77
DEVICE_MODEL: 'iPhone 17 Pro'
88
IOS_VERSION: '26.0'
99
USE_CCACHE: 1
10-
DEVELOPER_DIR: /Applications/Xcode_26.1.0.app/Contents/Developer
10+
DEVELOPER_DIR: /Applications/Xcode_26.1.app/Contents/Developer
11+
1112
jobs:
1213
test-ios-harness:
1314
name: Test iOS Harness
1415
runs-on: macos-latest
1516
timeout-minutes: 60
1617
env:
17-
DEVELOPER_DIR: env.DEVELOPER_DIR
18+
DEVELOPER_DIR: ${{ env.DEVELOPER_DIR }}
1819

1920
steps:
2021
- name: Checkout

0 commit comments

Comments
 (0)