From e51419d0ef58cfd88f9a784b00e4d1c2a7ad9a8b Mon Sep 17 00:00:00 2001 From: Nathan Schott Date: Fri, 8 Dec 2023 16:57:30 -0500 Subject: [PATCH] test --- fastlane/Fastfile | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 235b8bf..b19dd37 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -176,21 +176,20 @@ platform :ios do ENV["CODE_SIGN_ENTITLEMENTS"] = "" ENV["CODE_SIGNING_ALLOWED"] = "NO" - - sh "cd .. && set -o pipefail && xcodebuild clean archive -verbose -project PayPalMessages.xcodeproj -scheme PayPalMessages -configuration Release -sdk iphoneos -archivePath ./build/Archives/Device.xcarchive CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS='' CODE_SIGNING_ALLOWED=NO | tee '/Users/runner/Library/Logs/fastlane/xcbuild/2023-12-08/8127/xcodebuild.log' | xcpretty --color --simple" - - # xcodebuild( - # archive: true, - # workspace: "PayPalMessages.xcworkspace", - # scheme: "PayPalMessages", - # configuration: "Release", - # sdk: "iphoneos", - # archive_path: "./build/Archives/Device.xcarchive" - # ) + xcodebuild( + archive: true, + clean: true, + project: "PayPalMessages.xcodeproj", + scheme: "PayPalMessages", + configuration: "Release", + sdk: "iphoneos", + archive_path: "./build/Archives/Device.xcarchive" + ) xcodebuild( archive: true, - workspace: "PayPalMessages.xcworkspace", + clean: true, + project: "PayPalMessages.xcodeproj", scheme: "PayPalMessages", configuration: "Release", sdk: "iphonesimulator", @@ -205,7 +204,8 @@ platform :ios do # simulator so that the binaries can be combined xcodebuild( archive: true, - workspace: "PayPalMessages.xcworkspace", + clean: true, + project: "PayPalMessages.xcodeproject", scheme: "PayPalMessages", configuration: "Release", sdk: "iphonesimulator",