Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files

Fix picking of build number from a particular version

  • Loading branch information
joseph-cliqz committed Jun 3, 2019
1 parent 6c5773e commit cc4cbe274d1575c9b482f825f534da27d4792223
Showing with 6 additions and 1 deletion.
  1. +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"
) )


0 comments on commit cc4cbe2

Please sign in to comment.