lib/assets/DeliverfileDefault in deliver-0.4.2 vs lib/assets/DeliverfileDefault in deliver-0.5.0
- old
+ new
@@ -1,9 +1,8 @@
# For more information about each property, visit the GitHub documentation: https://github.com/krausefx/deliver
# Everything next to a # is a comment and will be ignored
-email '[[EMAIL]]'
# hide_transporter_output # remove the '#' in the beginning of the line, to hide the output while uploading
########################################
# App Metadata
@@ -14,10 +13,11 @@
apple_id "[[APPLE_ID]]"
# This folder has to include one folder for each language
# More information about automatic screenshot upload:
+# https://github.com/KrauseFx/deliver#upload-screenshots-to-itunes-connect
screenshots_path "./deliver/screenshots/"
# version '1.2' # you can pass this if you want to verify the version number with the ipa file
@@ -36,20 +36,24 @@
# number or changing the app identifier
# Attention: When you return a valid ipa file, this file will get uploaded and released
# If you only want to upload app metadata, remove the complete ipa block.
- # system("ipa build") # build your project using Shenzhen
+ # system("ipa build --verbose") # build your project using Shenzhen
"./[[APP_NAME]].ipa" # Tell 'Deliver' where it can find the finished ipa file
end
-# ipa "./latest.ipa" # this can be used, if you prefer manually building the ipa file
+# ipa "./latest.ipa" # this can be used instead of the `do` block, if you prefer manually building the ipa file
-# beta_ipa "./ad_hoc_build.ipa" # upload ipa file using `deliver --beta`
+# beta_ipa do
+ # system("ipa build --verbose") # customize this to build beta version
+ # "./ad_hoc_build.ipa" # upload ipa file using `deliver --beta`
+# end
# unit_tests do
+# If you use fastlane (http://github.com/krausefx/fastlane), run the tests there
# system("xctool test")
# end
success do
- system("say 'Successfully deployed a new version.'")
+ # system("say 'Successfully deployed a new version.'")
end