Skip to content

Commit

Permalink
fix: use pilot also in deliver ios lane
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebus-84 committed Dec 2, 2024
1 parent 81c7401 commit 74dcd8d
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -311,14 +311,7 @@ platform :ios do
duration: 1200,
in_house: false
)
# pilot(
# api_key: api_key,
# skip_waiting_for_build_processing: true,
# skip_submission: true,
# distribute_external: false,
# notify_external_testers: false,
# ipa: "./App.ipa"
# )

changelog = read_changelog
upload_to_testflight(
api_key: api_key,
Expand All @@ -327,7 +320,6 @@ platform :ios do
demo_account_required: true,
distribute_external:true,
changelog: changelog
# notify_external_testers: true
)
end
private_lane :deliver_production do
Expand All @@ -339,11 +331,18 @@ platform :ios do
in_house: false
)
changelog = read_changelog
pilot(
api_key: api_key,
ipa: "./App.ipa",
skip_waiting_for_build_processing: true,
demo_account_required: true,
distribute_external:true,
changelog: changelog
)
deliver(
api_key: api_key,
force: true,
ipa: "./App.ipa",
changelog: changelog,
skip_upload_apk: true,
metadata_path: "./fastlane/metadata/ios",
precheck_include_in_app_purchases: false,
skip_screenshots: true,
Expand Down

0 comments on commit 74dcd8d

Please sign in to comment.