diff --git a/Jenkinsfile b/Jenkinsfile index 87c8f84..71eceac 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -241,6 +241,10 @@ name = 'acceptance' input = 'Promote alpha to beta?' tasks = [ + pre: { + unarchive(mapping:['app/build/outputs/apk/' : '.']) + sh("ls -lA app/build/outputs/apk") + }, run: { if ( env.DRYRUN != 'true' ) fastlane('android', 'beta') /* }, @@ -252,6 +256,10 @@ name = 'production' input = 'Promote beta to production?' tasks = [ + pre: { + unarchive(mapping:['app/build/outputs/apk/' : '.']) + sh("ls -lA app/build/outputs/apk") + }, run: { if ( env.DRYRUN != 'true' ) fastlane('android', 'production') */ def currentVersion = [ name: getVersion('versionName') as String, code: getVersion('versionCode') as Integer ]