We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4290f7b commit 5da4755Copy full SHA for 5da4755
.github/workflows/deploy-legacy.yml
@@ -42,8 +42,16 @@ jobs:
42
43
- uses: actions/checkout@v4
44
45
- - run: |
46
- sudo xcode-select -s /Applications/Xcode_${XCODE_VERSION}.app/Contents/Developer
+ - name: Select Xcode Version
+ uses: maxim-lobanov/setup-xcode@v1
47
+ with:
48
+ xcode-version: ${{ env.XCODE_VERSION }}
49
+
50
+ - name: Show selected Xcode
51
+ run: |
52
+ echo "Using Xcode at:"
53
+ xcode-select -p
54
+ xcodebuild -version
55
56
- name: (Optional) Download iOS Simulator runtimes (18.x)
57
run: |
0 commit comments