diff --git a/Jenkinsfile b/Jenkinsfile index 069bf08..348b369 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -229,7 +229,7 @@ withGitPassword('bot-ci-dgm', { if ( env.DRYRUN != 'true' ) fastlane('android', 'alpha') gitTag("${currentVersion.name}-${currentVersion.code}") - gitUpdateVersion(nextVersion.name, nextVersion.code) + gitUpdateVersion(nextVersion.name, nextVersion.code, release['remote'], release['branch']) }) }, on: 'android', @@ -238,7 +238,7 @@ lazyStage { name = 'acceptance' - input = input('Promote alpha to beta ?') + input = 'Promote alpha to beta?' tasks = [ run: { if ( env.DRYRUN != 'true' ) fastlane('android', 'beta') @@ -248,7 +248,7 @@ lazyStage { name = 'production' - input = input('Promote beta to production ?') + input = 'Promote beta to production?' tasks = [ run: { if ( env.DRYRUN != 'true' ) fastlane('android', 'production')