diff --git a/Jenkinsfile b/Jenkinsfile index 74ccc48..aacd32a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -180,7 +180,7 @@ if (env.BRANCH_NAME == 'master') { lazyStage { name = 'release' - input = input('Release to alpha ?') + input = 'Release to alpha?' tasks = [ pre: { unarchive(mapping:['app/build/outputs/apk/' : '.']) @@ -205,21 +205,23 @@ lazyStage { name = 'acceptance' - input = input('Promote alpha to beta ?') + input = 'Promote to beta?' tasks = [ run: { env -> if ( env.DRYRUN != 'true' ) fastlane('android', 'beta') - } + }, + on: 'android', ] } lazyStage { name = 'production' - input = input('Promote beta to production ?') + input = 'Promote to production?' tasks = [ run: { env -> if ( env.DRYRUN != 'true' ) fastlane('android', 'production') - } + }, + on: 'android', ] } }