Make the CI clean and build (instead of just clean) (IOS-280) (#1311)

This commit is contained in:
Nathan Mattes 2024-06-11 12:17:07 +02:00 committed by GitHub
commit 3737005d88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 1 deletions

View File

@ -49,7 +49,13 @@ platform :ios do
lane :build_only do lane :build_only do
xcodebuild( xcodebuild(
clean: true, clean: true,
scheme: "Mastodon") scheme: "#{$appName}"
)
xcodebuild(
build: true,
destination: "platform=iOS Simulator,name=iPhone 14 Pro",
scheme: "#{$appName}"
)
end end
desc " Build and deploy the App to App Store Connect & TestFlight" desc " Build and deploy the App to App Store Connect & TestFlight"