Browse Source

Added auto increase build number for TestFlight

Alex Tran 3 years ago
parent
commit
d71e7ebff1
1 changed files with 3 additions and 0 deletions
  1. 3 0
      mobile/ios/fastlane/Fastfile

+ 3 - 0
mobile/ios/fastlane/Fastfile

@@ -18,6 +18,9 @@ default_platform(:ios)
 platform :ios do
   desc "iOS deployment"
   lane :beta do
+    increment_build_number({
+      build_number: latest_testflight_build_number + 1
+    })
     build_app(scheme: "Runner",
               workspace: "Runner.xcworkspace",
               xcargs: "-allowProvisioningUpdates")