Skip to content

Commit

Permalink
deliver => pilot
Browse files Browse the repository at this point in the history
  • Loading branch information
KuznetsovNikita committed Dec 8, 2024
1 parent f392898 commit 49adf1d
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions apps/tablet/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 49adf1d

Please sign in to comment.