Browse Source

minor

master
pvincent 2 years ago
parent
commit
7ca643511a
  1. 11
      tools/semver_git_tag

11
tools/semver_git_tag

@ -139,10 +139,11 @@ if [[ -f "${GIT_ROOT_FOLDER}/package.json" ]]; then
git add ${GIT_ROOT_FOLDER}/package.json
fi
echo $TAG >${GIT_ROOT_FOLDER}/.semver_git_tag
git add ${GIT_ROOT_FOLDER}/.semver_git_tag
echo $TAG
# echo $TAG >${GIT_ROOT_FOLDER}/.semver_git_tag
#git add ${GIT_ROOT_FOLDER}/.semver_git_tag
echo "tagging as $TAG ..."
git commit -am "tagged as ${TAG}"
git tag $TAG
git push origin master --tags
#git commit -am "tagged as ${TAG}"
#git tag $TAG
#git push origin master --tags
echo done
Loading…
Cancel
Save