mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 13:07:17 -04:00
5 lines
103 B
Bash
Executable file
5 lines
103 B
Bash
Executable file
# Add tag to repo of new release
|
|
# Example: add-tag.sh v1.62
|
|
|
|
git tag -a $1 -m "$1"
|
|
git push origin $1
|