Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-Android
Manage
Activity
Members
Labels
Plan
Issues
531
Issue boards
Milestones
Wiki
Code
Merge requests
13
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC-Android
Commits
c7846a6b
Commit
c7846a6b
authored
3 years ago
by
Nicolas Pomepuy
Browse files
Options
Downloads
Patches
Plain Diff
Fastlane: avoid uploading the metadata to the Play Store
parent
a935b161
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1096
Fastlane: avoid uploading the metadata to the Play Store
Pipeline
#140720
passed with stage
in 19 minutes and 50 seconds
Changes
1
Pipelines
7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
buildsystem/automation/fastlane/Fastfile
+4
-4
4 additions, 4 deletions
buildsystem/automation/fastlane/Fastfile
with
4 additions
and
4 deletions
buildsystem/automation/fastlane/Fastfile
+
4
−
4
View file @
c7846a6b
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment