Skip to content

Commit 0c6ce84

Browse files
committed
Fix tag script to push tag by tag
1 parent 5e6479e commit 0c6ce84

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/tag.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,11 @@ PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \
3232
| sort)
3333

3434
git tag ${TAG}
35+
git push origin ${TAG}
3536

3637
for dir in $PACKAGE_DIRS
3738
do
3839
printf "tagging ${dir}/${TAG}\n"
3940
git tag ${dir}/${TAG}
41+
git push origin ${dir}/${TAG}
4042
done

0 commit comments

Comments
 (0)