fix(ios,build) use epoch seconds for build number

Avoids conflicts when a build is rejected by Apple since Fastlane cannot
detect it.
This commit is contained in:
Saúl Ibarra Corretgé 2022-03-17 14:00:06 +01:00 committed by Saúl Ibarra Corretgé
parent 9ad57127d4
commit f04a01ee3a
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ platform :ios do
# Inrement the build number by 1
increment_build_number(
build_number: latest_testflight_build_number + 1,
build_number: Time.now.to_i,
xcodeproj: "app/app.xcodeproj"
)