Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix picking of build number from a particular version
- Loading branch information
Showing
with
6 additions
and
1 deletion.
-
+6
−1
fastlane/Fastfile
|
|
@@ -340,9 +340,14 @@ platform :ios do |
|
readonly: true,
|
|
readonly: true,
|
|
verbose: true
|
|
verbose: true
|
|
)
|
|
)
|
|
|
|
|
|
|
|
version = get_version_number(
|
|
|
|
xcodeproj: "Client.xcodeproj",
|
|
|
|
target: "Client"
|
|
|
|
)
|
|
|
|
|
|
increment_build_number(
|
|
increment_build_number(
|
|
build_number: latest_testflight_build_number + 1,
|
|
build_number: latest_testflight_build_number(version: version) + 1,
|
|
xcodeproj: "Client.xcodeproj"
|
|
xcodeproj: "Client.xcodeproj"
|
|
)
|
|
)
|
|
|
|
|
|
|
|