Last active
February 18, 2018 21:48
-
-
Save nicklanng/4e54bf35c13bf220408875dd059cad25 to your computer and use it in GitHub Desktop.
Semver for Travis CI based on Github Releases
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
if [ -z $TRAVIS_TAG ]; then | |
lastVersion=$(git tag -l --sort=v:refname *.*.* | tail -1) | |
if [ -z $lastVersion ]; then | |
lastVersion=0.0.0 | |
fi | |
version=$lastVersion-dev | |
else | |
version=$TRAVIS_TAG | |
fi | |
echo $version | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment