passepartout-apple/fastlane/Deliverfile
Davide De Rosa 9d92453110 XXX: Skip precheck
Doesn't work with API key authentication.
2021-02-05 18:08:54 +01:00

22 lines
665 B
Ruby

# The Deliverfile allows you to store various App Store Connect metadata
# For more information, check out the docs
# https://docs.fastlane.tools/actions/deliver/
screenshots_path "#{ENV["APP_ROOT"]}/fastlane/screenshots"
metadata_path "#{ENV["APP_ROOT"]}/fastlane/metadata"
if not ENV["TARGET"].nil?
binary_path = "#{ENV["DIST_PATH"]}/#{ENV["PLATFORM"]}/#{ENV["TARGET"]}"
if ENV["PLATFORM"] == "ios"
ipa "#{binary_path}/#{ENV["APP_NAME"]}.ipa"
else
pkg "#{binary_path}/#{ENV["APP_NAME"]}.pkg"
end
end
skip_binary_upload true
skip_metadata false
skip_screenshots false
#overwrite_screenshots true
run_precheck_before_submit false