@@ -300,7 +300,7 @@ platform :ios do
300300 scheme : OUDS_SCHEME ,
301301 output_directory : 'build/' ,
302302 archive_path : 'build/' ,
303- output_name : 'odsApp ' ,
303+ output_name : 'oudsApp ' ,
304304 configuration : 'Debug' ,
305305 include_symbols : true ,
306306 skip_archive : true ,
@@ -503,19 +503,22 @@ platform :ios do
503503
504504 # Disable automatic code signing for release / distribution builds.
505505 # Thus we won't use any Xcode with plugged account in, and use only needed certificates and provisioning profiles.
506- # Mobile provisioning profile named "OUDS demo app (release)" must be placed in runner.
507- # The certificate(s) used to build (with bundle ID) the provisionning profile must be available in the keychain of the runner
506+ # Mobile provisioning profiles named above must be placed in runner.
507+ # The certificate(s) used to build (with bundle ID) the provisionning profile(s) must be available in the keychain of the runner
508508 # (both .cer and .p12), here a distribution certificate.
509509 # This way is more agile and allows to use VM-based solution with on the fly configuration like with Tart.
510510 update_code_signing_settings ( path : "#{ OUDS_PROJECT } " ,
511511 use_automatic_signing : false ,
512- profile_name : 'OUDS demo app (release)' ,
513- targets : OUDS_SCHEME )
512+ profile_name : "OUDS iOS app (release)" ,
513+ targets : OUDS_SCHEME ,
514+ build_configurations : [ "Release" ] )
514515
515516 gym ( workspace : "#{ OUDS_WORKSPACE } " ,
516517 scheme : OUDS_SCHEME ,
517518 configuration : "Release" ,
519+ destination : "generic/platform=iOS" ,
518520 output_directory : "build/" ,
521+ output_name : "oudsApp" ,
519522 export_method : "app-store" ,
520523 archive_path : "build/oudsApp.xcarchive" ,
521524 xcargs : "-allowProvisioningUpdates" )
@@ -571,6 +574,7 @@ platform :ios do
571574 end
572575
573576 upload_to_testflight (
577+ ipa : "build/oudsApp.ipa" ,
574578 changelog : news ,
575579 app_identifier : "#{ DEVELOPER_APP_IDENTIFIER } " ,
576580 skip_submission : false ,
0 commit comments