chore(mobile): prevent beta distribution of dev app
This commit is contained in:
@@ -41,11 +41,14 @@ platform :ios do
|
||||
key_filepath: 'ios/Authkey.p8',
|
||||
in_house: false # optional but may be required if using match/sigh
|
||||
)
|
||||
|
||||
is_prod = scheme == 'StandardNotes'
|
||||
|
||||
upload_to_testflight(
|
||||
apple_id: ENV['APPLE_APP_ID'],
|
||||
distribute_external: true,
|
||||
notify_external_testers: true,
|
||||
submit_beta_review: true,
|
||||
distribute_external: is_prod,
|
||||
notify_external_testers: is_prod,
|
||||
submit_beta_review: is_prod,
|
||||
changelog: 'Fixes and improvements.'
|
||||
)
|
||||
# refresh_dsyms
|
||||
|
||||
Reference in New Issue
Block a user