Skip to content

Commit fc8aa24

Browse files
committed
ci: fix iOS workflow env paths for parser compatibility
1 parent 78e1cec commit fc8aa24

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ios-runner-prebuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
env:
1919
IOS_RUNTIME_VERSION: '26.2'
2020
IOS_DEVICE_NAME: 'iPhone 17 Pro'
21-
PREBUILT_DIR: ${{ runner.temp }}/ios-runner-prebuilt
22-
DERIVED_DATA_PATH: ${{ runner.temp }}/ios-runner-derived
21+
PREBUILT_DIR: ${{ github.workspace }}/.tmp/ios-runner-prebuilt
22+
DERIVED_DATA_PATH: ${{ github.workspace }}/.tmp/ios-runner-derived
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

.github/workflows/ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
continue-on-error: true
2222
env:
2323
IOS_RUNTIME_VERSION: '26.2'
24-
PREBUILT_DIR: ${{ runner.temp }}/ios-runner-prebuilt
24+
PREBUILT_DIR: ${{ github.workspace }}/.tmp/ios-runner-prebuilt
2525
steps:
2626
- name: Checkout
2727
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

0 commit comments

Comments
 (0)