|
183 | 183 |
|
184 | 184 | upload_build_to_testflight( |
185 | 185 | whats_new_path: WORDPRESS_RELEASE_NOTES_PATH, |
186 | | - distribution_groups: ['Internal a8c Testers', 'Public Beta Testers'] |
| 186 | + distribution_groups: ['Internal a8c Testers', 'Public Beta Testers'], |
| 187 | + beta_app_description_path: WORDPRESS_BETA_APP_DESCRIPTION_PATH |
187 | 188 | ) |
188 | 189 |
|
189 | 190 | sentry_upload_dsym( |
|
248 | 249 |
|
249 | 250 | upload_build_to_testflight( |
250 | 251 | whats_new_path: JETPACK_RELEASE_NOTES_PATH, |
251 | | - distribution_groups: ['Beta Testers'] |
| 252 | + distribution_groups: ['Beta Testers'], |
| 253 | + beta_app_description_path: JETPACK_BETA_APP_DESCRIPTION_PATH |
252 | 254 | ) |
253 | 255 |
|
254 | 256 | sentry_upload_dsym( |
@@ -462,10 +464,11 @@ def buildkite_ci? |
462 | 464 | ENV.fetch('BUILDKITE', false) |
463 | 465 | end |
464 | 466 |
|
465 | | - def upload_build_to_testflight(whats_new_path:, distribution_groups:) |
| 467 | + def upload_build_to_testflight(whats_new_path:, distribution_groups:, beta_app_description_path:) |
466 | 468 | upload_to_testflight( |
467 | 469 | team_id: get_required_env('FASTLANE_ITC_TEAM_ID'), |
468 | 470 | api_key_path: APP_STORE_CONNECT_KEY_PATH, |
| 471 | + beta_app_description: File.read(beta_app_description_path), |
469 | 472 | changelog: File.read(whats_new_path), |
470 | 473 | distribute_external: true, |
471 | 474 | groups: distribution_groups, |
|
0 commit comments