Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortobiasKaminsky <tobias@kaminsky.me>2020-07-31 13:47:00 +0300
committertobiasKaminsky <tobias@kaminsky.me>2020-07-31 13:47:00 +0300
commit1d3c2e98a9f5f460c1bee455c99c4ecbba6900a9 (patch)
treee9628e1eaf29210f896c20f898bb8b0c2ae770a3 /fastlane
parentcc750123a7b124ed83ff148d89b8b111cc0c3fca (diff)
change order of fastlane lanes
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
Diffstat (limited to 'fastlane')
-rw-r--r--fastlane/Fastfile16
1 files changed, 8 insertions, 8 deletions
diff --git a/fastlane/Fastfile b/fastlane/Fastfile
index 7963eef7fe..aefd39b491 100644
--- a/fastlane/Fastfile
+++ b/fastlane/Fastfile
@@ -39,19 +39,14 @@ lane :screenshotsTablet do
end
desc "Release phase 1: make gplay/generic for RC, then test it"
-lane :releasePhase1_RC do
+lane :RC_releasePhase1 do
disableLogger()
makeReleases()
enableLogger()
end
-desc "Release phase 1: make gplay/generic for FINAL, then test it"
-lane :releasePhase1_Final do
- makeReleases()
-end
-
desc "Release phase 2 for RC: checks, tag, upload gplay to playstore with values from build.gradle"
-lane :releasePhase2_RC do |options|
+lane :RC_releasePhase2 do |options|
info = androidVersion
checkChangelog(info)
checkLibrary_RC()
@@ -64,8 +59,13 @@ lane :releasePhase2_RC do |options|
createChangelogPullRequest_RC(info)
end
+desc "Release phase 1: make gplay/generic for FINAL, then test it"
+lane :Final_releasePhase1 do
+ makeReleases()
+end
+
desc "Release phase 2 for FINAL: checks, tag, upload gplay to playstore with values from build.gradle"
-lane :releasePhase2_Final do |options|
+lane :Final_releasePhase2 do |options|
info = androidVersion
checkChangelog(info)
checkLibrary_Final()