ReaderforSelfoss/version.sh

11 lines
162 B
Bash
Raw Normal View History

#!/bin/bash
# You can pass --force as first parameter to force push and tag creation.
2018-05-25 20:47:36 +00:00
echo "Creating tag $@"
2018-05-25 20:47:36 +00:00
git tag $@
echo "Pushing tag"
2018-05-25 20:47:36 +00:00
git push origin $@