From 35c953f2ca995bcead496f9646c903445ce428c4 Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Mon, 9 Jan 2017 22:03:18 -0800 Subject: [PATCH] Dont automatically increment version on Travis --- fastlane/Fastfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index d22f528ba..452917ce9 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -72,8 +72,12 @@ platform :ios do end end - lane :release do + desc "Bump build number" + lane :bump do update_build_number + end + + lane :release do fabric_beta itunes end @@ -81,14 +85,12 @@ platform :ios do desc "Submit a new Beta Build to Apple TestFlight" desc "This will also make sure the profile is up to date" lane :itc do - update_build_number itunes end desc "Submit a new Beta Build to Fabric" desc "This will also make sure the profile is up to date" lane :fabric do - update_build_number fabric_beta end