Skip to content

Commit

Permalink
ci: fix error when running manual workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoEidinger committed Jan 6, 2025
1 parent 89bcfa0 commit 65ad08c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ jobs:
run: sudo xcode-select -p
- name: Determine Xcode version based on iOS version
run: |
if [[ ${{ env.iOSVersion }} == '17.0' ]]; then
if [[ -z "${{ env.iOSVersion }}" ]]; then
echo "iOSVersion is not set. Using latest Xcode version."
neededXcode='Xcode_16.1'
elif [[ ${{ env.iOSVersion }} == '17.0' ]]; then
neededXcode='Xcode_16.1'
else
neededXcode='Xcode_15.4'
Expand Down

0 comments on commit 65ad08c

Please sign in to comment.