mirror of
https://github.com/yattee/yattee.git
synced 2026-05-12 18:35:05 +00:00
Fix fastlane mac beta build for multiplatform scheme
Without sdk:"macosx", gym treats the multiplatform scheme as iOS and fails with "IPA invalid". Without an explicit destination xcodebuild picked tvOS. The output_name also needed the .app suffix removed since gym appends .pkg for macOS app-store exports.
This commit is contained in:
@@ -266,8 +266,10 @@ platform :mac do
|
||||
|
||||
build_mac_app(
|
||||
scheme: SCHEME,
|
||||
sdk: "macosx",
|
||||
destination: "generic/platform=macOS",
|
||||
output_directory: "fastlane/builds/#{version}-#{build}/macOS",
|
||||
output_name: "#{APP_NAME}-#{version}-macOS.app",
|
||||
output_name: "#{APP_NAME}-#{version}-macOS",
|
||||
export_method: "app-store",
|
||||
export_options: {
|
||||
provisioningProfiles: {
|
||||
|
||||
Reference in New Issue
Block a user