Skip to content

Commit

Permalink
Skip verification of HTML preview file in fastlane
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
tobihagemann committed Nov 30, 2024
1 parent d78c937 commit c3ca8a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ platform :ios do
ensure_env_vars(
env_vars: ['BUNDLE_IDENTIFIER', 'METADATA_PATH']
)
deliver(skip_binary_upload: true, skip_metadata: true, overwrite_screenshots: true, run_precheck_before_submit: false)
deliver(skip_binary_upload: true, skip_metadata: true, overwrite_screenshots: true, run_precheck_before_submit: false, force: true)
end

desc "Update metadata in App Store Connect"
Expand All @@ -33,7 +33,7 @@ platform :ios do
ensure_env_vars(
env_vars: ['BUNDLE_IDENTIFIER', 'METADATA_PATH']
)
deliver(skip_binary_upload: true, skip_screenshots: true, run_precheck_before_submit: false)
deliver(skip_binary_upload: true, skip_screenshots: true, run_precheck_before_submit: false, force: true)
end

desc "Submit a new beta build to TestFlight"
Expand Down Expand Up @@ -82,7 +82,7 @@ platform :ios do
apply_config
scan
gym
deliver(skip_screenshots: true, submit_for_review: true)
deliver(skip_screenshots: true, submit_for_review: true, force: true)
end

desc "Apply app configuration to release a different version"
Expand Down

0 comments on commit c3ca8a6

Please sign in to comment.