From fa6e5e768fe3735f8086cacd08498a7dea29166c Mon Sep 17 00:00:00 2001 From: ivan grachev Date: Wed, 4 Dec 2024 15:02:57 +0300 Subject: [PATCH] fix commiting build number bump --- fastlane/Fastfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index b667dab9..f4bdbe02 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -2,8 +2,10 @@ lane :bb do new_build_number = increment_build_number() git_add(path: "Wallet.xcodeproj/project.pbxproj") + git_add(path: "App macOS/Info.plist") + git_add(path: "App iOS/Info.plist") git_commit( - path: "Wallet.xcodeproj/project.pbxproj", + path: ["Wallet.xcodeproj/project.pbxproj", "App macOS/Info.plist", "App iOS/Info.plist"], message: "bump build number #{new_build_number}" )