我有一个Bamboo服务器,目前正设置为在我的项目上测试我的构建。 我想使用NPM版本或grunt bump开始版本化我的项目。
这是我目前的Bamboo设置,
如果分支是' master'我希望能够在步骤2和3之间增加版本。
我试图为此提出一个好的解决方案。
我想知道只是做npm版本或npm碰撞就足够了吗?看来我想让他们把这个回复给git repo?
寻找一些可能的建议
答案 0 :(得分:0)
首先检测您是否在master分支上。如果是这样,请进行npm version
更新。您还需要告诉git推送到远程存储库,而不是推送到Bamboo服务器上缓存的存储库。例如,在构建计划的脚本任务中:
npm install
npm run build
if [[ "${bamboo.planRepository.branchName}" == "master" ]]; then
# configure git to use the remote repo
git remote set-url origin ${bamboo.planRepository.1.repositoryUrl}
rm .git/objects/info/alternates
git fetch
# update the local version
# this will increment the last version number, commit and tag the commit
npm version patch
# create your artifact
npm pack
# push the version update
git push
git push --tags
fi