change order of fastlane lanes

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2020-07-31 12:47:00 +02:00
parent cc750123a7
commit 1d3c2e98a9
No known key found for this signature in database
GPG Key ID: 0E00D4D47D0C5AF7
1 changed files with 8 additions and 8 deletions

View File

@ -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()