I am trying to work with CICD pipeline using fastlane. For Android I am using version code, however for iOS I am struggling to get build numbers to work properly.
The only thing available is the option --build-number as far as I can see and that appends to the app version instead of being it's own number.
Testflight and other common tooling seem to expect that this is a simple integer whereas tauri seems to unexpectedly append this:
--build-number <BUILD_NUMBER> Build number to append to the app version => 0.1.0.<BUILD> vs just <BUILD>.
Used as follows: npm run tauri ios build -- --build-number #{build_number} --export-method release-testing
Is there any way for me to still easily define my own build number? In a CICD environment?
Cheers!