Skip to content

Instantly share code, notes, and snippets.

@nicklanng
Last active February 18, 2018 21:48
Show Gist options
  • Save nicklanng/4e54bf35c13bf220408875dd059cad25 to your computer and use it in GitHub Desktop.
Save nicklanng/4e54bf35c13bf220408875dd059cad25 to your computer and use it in GitHub Desktop.
Semver for Travis CI based on Github Releases
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