From 9ec3bc6126664c86a2294ab2bbd69d0f665e611e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Mon, 1 May 2017 20:37:50 +0300 Subject: [PATCH] Change fastlane config for beta versions --- fastlane/Fastfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index ebdc4543d..d961dd912 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -25,18 +25,18 @@ platform :android do gradle(task: "test") end - desc "Submit a new Beta Build to Crashlytics Beta" + desc "Submit a new Beta Build to Google Play" lane :beta do - gradle(task: "assembleRelease") - crashlytics + # build the release variant + gradle(task: "assembleGoogleRelease") - # sh "your_script.sh" - # You can also use other beta testing services here + # upload to Google Play + supply(track: "beta") end desc "Deploy a new version to the Google Play" lane :deploy do - gradle(task: "assembleRelease") + gradle(task: "assembleGoogleRelease") supply end