Skip to content
Snippets Groups Projects
Commit c7846a6b authored by Nicolas Pomepuy's avatar Nicolas Pomepuy
Browse files

Fastlane: avoid uploading the metadata to the Play Store

parent a935b161
No related branches found
No related tags found
1 merge request!1096Fastlane: avoid uploading the metadata to the Play Store
Pipeline #140720 passed with stage
in 19 minutes and 50 seconds
......@@ -58,7 +58,7 @@ platform :android do
desc "Deploy a new version to the Google Play"
lane :deploy_release do |options|
checkAPKFileExists options[:version], false
upload_to_play_store(skip_upload_changelogs:true, skip_upload_images:true, skip_upload_screenshots:true, release_status:"draft", apk_paths:getFileList(options[:version]))
upload_to_play_store(skip_upload_metadata:true, skip_upload_changelogs:true, skip_upload_images:true, skip_upload_screenshots:true, release_status:"draft", apk_paths:getFileList(options[:version]))
slack(message: 'Successfully created a new draft for '+options[:version])
end
......@@ -72,19 +72,19 @@ platform :android do
end
lane :deploy_screenshots do
upload_to_play_store(skip_upload_changelogs:true, skip_upload_images:true, skip_upload_apk:true, release_status:"draft")
upload_to_play_store(skip_upload_metadata:true, skip_upload_changelogs:true, skip_upload_images:true, skip_upload_apk:true, release_status:"draft")
slack(message: 'Successfully uploaded screenshots to Play Store')
end
lane :deploy_beta do |options|
checkAPKFileExists options[:version], false
upload_to_play_store(skip_upload_changelogs:true, track: 'beta', skip_upload_images:true, skip_upload_screenshots:true, skip_upload_apk:false, release_status:"draft", apk_paths:getFileList(options[:version]))
upload_to_play_store(skip_upload_metadata:true, skip_upload_changelogs:true, track: 'beta', skip_upload_images:true, skip_upload_screenshots:true, skip_upload_apk:false, release_status:"draft", apk_paths:getFileList(options[:version]))
slack(message: 'Successfully created a new beta draft for '+options[:version])
end
lane :deploy_internal do |options|
checkAPKFileExists options[:version], false
upload_to_play_store(skip_upload_changelogs:true, track: 'internal', skip_upload_images:true, skip_upload_screenshots:true, skip_upload_apk:false, release_status:"draft", apk_paths:getFileList(options[:version]))
upload_to_play_store(skip_upload_metadata:true, skip_upload_changelogs:true, track: 'internal', skip_upload_images:true, skip_upload_screenshots:true, skip_upload_apk:false, release_status:"draft", apk_paths:getFileList(options[:version]))
slack(message: 'Successfully created a new internal draft for '+options[:version])
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment