passepartout-apple/fastlane/Deliverfile

22 lines
665 B
Plaintext
Raw Normal View History

# The Deliverfile allows you to store various App Store Connect metadata
# For more information, check out the docs
# https://docs.fastlane.tools/actions/deliver/
2021-01-17 21:10:37 +00:00
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
2021-01-02 22:23:18 +00:00
skip_binary_upload true
skip_metadata false
skip_screenshots false
2021-01-30 20:58:22 +00:00
#overwrite_screenshots true
run_precheck_before_submit false