DEV Community

Discussion on: Gitflow and NPM versions

Collapse
 
tirthaguha profile image
Tirtha Guha

The way I fixed it is as follows

//${buildNumber} and ${branch} are available as env variables in the build agent(at least available in jenkins/bamboo)
tagversion="1.0.0-${branch}.${buildNumber}"
echo $tagversion
npm version $tagversion

so my builds are created and published as
1.0.0-master.1 //for master
1.0.0-release.1 //for release
1.0.0-dev.1 //for dev