From ac1a7420c4ff85dd372db0d78781aac028605bbf Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Tue, 11 Jun 2024 11:57:20 +0200 Subject: [PATCH] Add destination --- fastlane/Fastfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index d291ecd6c..c5d02dd83 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -49,11 +49,12 @@ platform :ios do lane :build_only do xcodebuild( clean: true, - scheme: "Mastodon" + scheme: "#{$appName}" ) xcodebuild( build: true, - scheme: "Mastodon" + destination: "platform=iOS Simulator,name=iPhone 14 Pro", + scheme: "#{$appName}" ) end