Skip to content

Commit

Permalink
.github/workflows/ios-tests.yml: exclude Beta and Release Candidate v…
Browse files Browse the repository at this point in the history
…ersions of Xcode
  • Loading branch information
RDMurray committed Nov 13, 2024
1 parent 4ac2ed0 commit cf60bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ios-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: setup
run: |
# Find path of latest installed Xcode version
xcode_path="$(ls -d /Applications/Xcode*.app | sort -V | tail -n1)"
xcode_path="$(ls -d /Applications/Xcode*.app | grep -v -E 'Release_Candidate|Beta' | sort -V | tail -n1)"
echo "Xcode path: ${xcode_path}"
sudo xcode-select -s "${xcode_path}/Contents/Developer"
xcodebuild -version
Expand Down

0 comments on commit cf60bc8

Please sign in to comment.