Add destination

This commit is contained in:
Nathan Mattes 2024-06-11 11:57:20 +02:00 committed by GitHub
parent 83e2000090
commit ac1a7420c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -49,11 +49,12 @@ platform :ios do
lane :build_only do lane :build_only do
xcodebuild( xcodebuild(
clean: true, clean: true,
scheme: "Mastodon" scheme: "#{$appName}"
) )
xcodebuild( xcodebuild(
build: true, build: true,
scheme: "Mastodon" destination: "platform=iOS Simulator,name=iPhone 14 Pro",
scheme: "#{$appName}"
) )
end end