bin/bump-version.sh in docman-0.0.85 vs bin/bump-version.sh in docman-0.0.86

- old
+ new

@@ -46,12 +46,12 @@ echo "" >> tmpfile echo "" >> tmpfile cat CHANGES >> tmpfile mv tmpfile CHANGES git add CHANGES VERSION - git commit -m "[skip] [ci-skip] Version bump to $INPUT_STRING" - git tag -a -m "[skip] [ci-skip] Tagging version $INPUT_STRING" "$INPUT_STRING" + git commit -m "[skip] [ci-skip] [ci skip] Version bump to $INPUT_STRING" + git tag -a -m "[skip] [ci-skip] [ci skip] Tagging version $INPUT_STRING" "$INPUT_STRING" git push origin ${INPUT_STRING} git push origin master else echo "Could not find a VERSION file" read -p "Do you want to create a version file and start from scratch? [y]" RESPONSE @@ -65,12 +65,12 @@ echo "Version 0.1.0" > CHANGES git log --pretty=format:" - %s" >> CHANGES echo "" >> CHANGES echo "" >> CHANGES git add VERSION CHANGES - git commit -m "[skip] [ci-skip] Added VERSION and CHANGES files, Version bump to 0.1.0" - git tag -a -m "[skip] [ci-skip] Tagging version 0.1.0" "0.1.0" + git commit -m "[skip] [ci-skip] [ci skip] Added VERSION and CHANGES files, Version bump to 0.1.0" + git tag -a -m "[skip] [ci-skip] [ci skip] Tagging version 0.1.0" "0.1.0" git push origin --tags git push origin master fi TAG="0.1.0" fi @@ -90,10 +90,10 @@ fi echo "type: tag" > info.yaml echo "version: $TAG" >> info.yaml git add info.yaml if [ -n "$3" ] && [ "$3" == "skip" ]; then - git commit -m "[skip] [ci-skip] Changed tag to: $TAG" & git push -u origin ${BRANCH} + git commit -m "[skip] [ci-skip] [ci skip] Changed tag to: $TAG" & git push -u origin ${BRANCH} else git commit -m "Changed tag to: $TAG" git push -u origin ${BRANCH} fi git checkout master