From 310b86bf12735f9b00234abf91b2683a64a8d8cd Mon Sep 17 00:00:00 2001 From: Nathan Tannar Date: Mon, 27 Nov 2023 19:16:42 -0800 Subject: [PATCH] Update ios.yml --- .github/workflows/ios.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 87a9928..5152afc 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -22,10 +22,12 @@ jobs: run: sudo xcode-select -p - name: Get Swift Version run: swift --version + - name: Disable SPM Plugin Validation + run: defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidatation -bool YES - name: Build env: platform: ${{ 'iOS Simulator' }} run: | # xcrun xctrace returns via stderr, not the expected stdout (see https://developer.apple.com/forums/thread/663959) device=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone.*?[^\(]+' | head -1 | awk '{$1=$1;print}' | sed -e "s/ Simulator$//"` - xcodebuild -skipPackagePluginValidation build -scheme "Example" -project Example/Example.xcodeproj -destination "platform=$platform,name=$device" + xcodebuild build -scheme "Example" -project Example/Example.xcodeproj -destination "platform=$platform,name=$device"