mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
6 lines
103 B
Bash
6 lines
103 B
Bash
|
|
# Add tag to repo of new release
|
||
|
|
# Example: add-tag.sh v1.62
|
||
|
|
|
||
|
|
git tag -a $1 -m "$1"
|
||
|
|
git push origin $1
|