[Android] Fastlane: avoid uploading the metadata to the Play Store
Nicolas Pomepuy
git at videolan.org
Fri Sep 17 06:00:14 UTC 2021
vlc-android | branch: master | Nicolas Pomepuy <nicolas at videolabs.io> | Fri Sep 17 07:42:44 2021 +0200| [c7846a6bde22bf9ae4870ef1cb0ed2d496d0747b] | committer: Nicolas Pomepuy
Fastlane: avoid uploading the metadata to the Play Store
> https://code.videolan.org/videolan/vlc-android/commit/c7846a6bde22bf9ae4870ef1cb0ed2d496d0747b
---
buildsystem/automation/fastlane/Fastfile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/buildsystem/automation/fastlane/Fastfile b/buildsystem/automation/fastlane/Fastfile
index 9c4977b04..a8dae8ff4 100644
--- a/buildsystem/automation/fastlane/Fastfile
+++ b/buildsystem/automation/fastlane/Fastfile
@@ -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
More information about the Android
mailing list