We need an option to set floating build numbers

Right now in the Bitrise we can only have build numbers can only be even numbers like 20, 21. We need an option where in we can set build numbers like 1.0 or 1.01

Hi @sunil_codecraft,

It’s already possible, by interpolating the build number into this version number. E.g. in a script step you can:

ver="1.0.$BITRISE_BUILD_NUMBER"

echo "version: $ver"

Which step you want to use this version number with?