diff --git a/fastlane/Fastfile.swift b/fastlane/Fastfile.swift index 5b451a87..fb6e1fac 100644 --- a/fastlane/Fastfile.swift +++ b/fastlane/Fastfile.swift @@ -67,7 +67,6 @@ class Fastfile: LaneFile { desc("Build Staging app and upload to Firebase") setAppVersion() -// bumpBuild() buildAdHocStagingLane() @@ -83,7 +82,6 @@ class Fastfile: LaneFile { desc("Build Staging app and upload to Firebase") setAppVersion() -// bumpBuild() buildAdHocProductionLane() @@ -119,7 +117,6 @@ class Fastfile: LaneFile { desc("Build Production app and upload to TestFlight") setAppVersion() -// bumpBuild() buildAppStoreLane() @@ -196,22 +193,4 @@ class Fastfile: LaneFile { versionNumber: .userDefined(Constant.manualVersion) ) } - -// private func bumpBuild(buildNumber: Int = numberOfCommits()) { -// desc("Set build number with number of commits") -// incrementBuildNumber( -// buildNumber: .userDefined(String(buildNumber)), -// xcodeproj: .userDefined(Constant.projectPath) -// ) -// } -// -// private func bumpAppstoreBuild() { -// desc("Set build number with App Store latest build") -// let theLatestBuildNumber = latestTestflightBuildNumber( -// appIdentifier: Constant.productionBundleId -// ) + 1 -// incrementBuildNumber( -// buildNumber: .userDefined("\(theLatestBuildNumber)") -// ) -// } }