From c2fe143fcae8c8a9c79eabb3d572462607c4e1d9 Mon Sep 17 00:00:00 2001 From: Alexia Nunez Date: Wed, 2 Apr 2025 15:08:22 -0400 Subject: [PATCH] Update ios.yml Adding `allowProvisionUpdates` flag to `xcodebuild`. --- .github/workflows/ios.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 0449bfa..2cc851c 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -25,4 +25,4 @@ jobs: if [ $scheme = default ]; then scheme=$(cat default); fi if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi file_to_build=`echo $file_to_build | awk '{$1=$1;print}'` - xcodebuild test -scheme "$scheme" -"$filetype_parameter" "$file_to_build" -destination "platform=$platform,OS=$os,name=$device" + xcodebuild test -scheme "$scheme" -"$filetype_parameter" "$file_to_build" -destination "platform=$platform,OS=$os,name=$device" -allowProvisioningUpdates