We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f5184f commit 3bf69a0Copy full SHA for 3bf69a0
1 file changed
.github/workflows/build.yml
@@ -20,7 +20,10 @@ jobs:
20
21
# 설치된 iOS Simulator 런타임 버전들 추출 (예: 17.2, 18.0 ...)
22
# 출력 포맷이 달라질 수 있어, "iOS <version>" 패턴에서 숫자만 뽑습니다.
23
- mapfile -t versions < <(
+ versions=()
24
+ while IFS= read -r v; do
25
+ versions+=("$v")
26
+ done < <(
27
xcrun simctl runtime list 2>/dev/null \
28
| grep -Eo 'iOS ([0-9]+(\.[0-9]+)?)' \
29
| awk '{print $2}' \
0 commit comments