Skip to content

Commit 7344709

Browse files
committed
ci: fix error when running manual workflow (2)
1 parent 65ad08c commit 7344709

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ on:
1010
frameworkVersion:
1111
description: 'Framework Version'
1212
required: true
13-
default: '9.2.7'
13+
default: '24.12.0'
1414
iOSVersion:
1515
description: 'iOS Version'
1616
required: true
17-
default: '15.0'
17+
default: '17.0'
1818

1919
jobs:
2020
verify-podspec-install:
@@ -38,7 +38,7 @@ jobs:
3838
id: frameworkVersion
3939
if: github.event_name != 'workflow_dispatch'
4040
run: |
41-
relevantVersion=9.0.1 # safeguard in case no podspec file(s) were changed
41+
relevantVersion=24.12.0 # safeguard in case no podspec file(s) were changed
4242
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
4343
lastVersion=`echo ${file} | cut -d / -f 2`
4444
[[ $lastVersion == [0-9]* ]] && relevantVersion=$lastVersion
@@ -111,7 +111,7 @@ jobs:
111111
run: sudo xcode-select -p
112112
- name: Determine Xcode version based on iOS version
113113
run: |
114-
if [[ -z "${{ env.iOSVersion }}" ]]; then
114+
if [ -z "${{ env.iOSVersion }}" ]; then
115115
echo "iOSVersion is not set. Using latest Xcode version."
116116
neededXcode='Xcode_16.1'
117117
elif [[ ${{ env.iOSVersion }} == '17.0' ]]; then

0 commit comments

Comments
 (0)