Created
March 29, 2020 11:14
-
-
Save aradhell/e0d254c5577aa075601f5704846bd5d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export SEMVER_LAST_TAG=$(git describe --abbrev=0 --tags | cat | tr -d 'v' 2>/dev/null) | |
export SEMVER_RELEASE_LEVEL=$(git log --oneline -1 --pretty=%B | cat | tr -d '\n' | cut -d "[" -f2 | cut -d "]" -f1) | |
#curl -o /tmp/hub.tgz https://github.com/github/hub/releases/download/v2.2.9/hub-linux-arm64-2.2.9.tgz | |
#tar -xvzf /tmp/hub.tgz -C /tmp | |
if [ -z $SEMVER_LAST_TAG ]; then | |
>&2 echo "No tags defined" | |
SEMVER_LAST_TAG="0.0.1" | |
fi | |
if [ -n $SEMVER_RELEASE_LEVEL ]; then | |
git clone https://github.com/aradhell/semver-tool /tmp/semver &> /dev/null | |
SEMVER_NEW_TAG=$(/tmp/semver/src/semver bump $SEMVER_RELEASE_LEVEL $SEMVER_LAST_TAG) | |
git tag $SEMVER_NEW_TAG &> /dev/null | |
git push origin --tags &> /dev/null | |
echo $SEMVER_NEW_TAG | |
else | |
>&2 echo "No release level defined" | |
fi | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment