diff --git a/apps/tablet/fastlane/Fastfile b/apps/tablet/fastlane/Fastfile index fcdf2b0ae..b72d65efb 100644 --- a/apps/tablet/fastlane/Fastfile +++ b/apps/tablet/fastlane/Fastfile @@ -130,22 +130,19 @@ platform :ios do ) end - private_lane :create_changelog do - release_notes = "./metadata/default/release_notes.txt" - changes = changelog_from_git_commits(commits_count: 10, merge_commit_filtering: "exclude_merges") - File.write(release_notes, changes) - end - private_lane :submit_to_testflight do api_key = lane_context[SharedValues::APP_STORE_CONNECT_API_KEY] + ipa = lane_context[SharedValues::IPA_OUTPUT_PATH] + changelog = changelog_from_git_commits(commits_count: 10, merge_commit_filtering: "exclude_merges") - deliver( + pilot( api_key: api_key, - skip_screenshots: false, - skip_metadata: false, - skip_app_version_update: true, - force: true, # skips verification of HTML preview file (since this will be run from a CI machine) - run_precheck_before_submit: false # not supported through ASC API yet + ipa: ipa, + changelog: changelog, + skip_waiting_for_build_processing: true, + skip_submission: true, + distribute_external: false, + notify_external_testers: false ) end end \ No newline at end of file