From c61eac1c49668289eb6e1ca30953702af38c09d8 Mon Sep 17 00:00:00 2001 From: xuemh Date: Tue, 10 Jul 2018 17:32:20 +0800 Subject: [PATCH] test --- fastlane/Fastfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 938a7a4..6f3d06b 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -18,7 +18,12 @@ default_platform(:ios) platform :ios do desc "Push a new beta build to TestFlight" lane :beta do - build_app(scheme: "Ifish") - upload_to_testflight + + ensure_git_status_clean + increment_build_number + commit_version_bump + # push_to_git_remote + # build_app(scheme: "Ifish") + # upload_to_testflight end end