Skip to content

Commit 8eb03fe

Browse files
committed
Fix yml again
1 parent 0477e8c commit 8eb03fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/integration_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
apis: ${{ steps.matrix_config.outputs.apis }}
6363
mobile_test_on: ${{ steps.matrix_config.outputs.mobile_test_on }}
6464
android_device: ${{ steps.matrix_config.outputs.android_device }}
65-
xcode_version: ${{ steps.matrix_config.outputs.xcode_version }}
65+
xcode_version: ${{ fromJson(steps.matrix_config.outputs.xcode_version)[0] }}
6666
ios_device: ${{ steps.matrix_config.outputs.ios_device }}
6767
tvos_device: ${{ steps.matrix_config.outputs.tvos_device }}
6868
steps:
@@ -212,7 +212,7 @@ jobs:
212212
steps:
213213
- name: setup Xcode version (macos)
214214
if: runner.os == 'macOS'
215-
run: sudo xcode-select -s /Applications/Xcode_${{ fromJson(needs.check_and_prepare.xcode_version)[0] }}.app/Contents/Developer
215+
run: sudo xcode-select -s /Applications/Xcode_${{ needs.check_and_prepare.outputs.xcode_version }}.app/Contents/Developer
216216
- uses: actions/checkout@v2
217217
with:
218218
ref: ${{needs.check_and_prepare.outputs.github_ref}}
@@ -394,7 +394,7 @@ jobs:
394394
steps:
395395
- name: setup Xcode version (macos)
396396
if: runner.os == 'macOS'
397-
run: sudo xcode-select -s /Applications/Xcode_${{ fromJson(needs.check_and_prepare.xcode_version)[0] }}.app/Contents/Developer
397+
run: sudo xcode-select -s /Applications/Xcode_${{ fromJson(needs.check_and_prepare.outputs.xcode_version)[0] }}.app/Contents/Developer
398398
- uses: actions/checkout@v2
399399
with:
400400
ref: ${{needs.check_and_prepare.outputs.github_ref}}

0 commit comments

Comments
 (0)