wekan/releases/add-tag.sh

6 lines
103 B
Bash
Raw Normal View History

2018-11-04 18:32:08 +02:00
# Add tag to repo of new release
# Example: add-tag.sh v1.62
git tag -a $1 -m "$1"
git push origin $1