Skip to content

Commit

Permalink
Update tag script
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Sep 1, 2021
1 parent 48c6c56 commit cec9d49
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \
| sort)

git tag ${TAG}
git push origin ${TAG}

for dir in $PACKAGE_DIRS
do
printf "tagging ${dir}/${TAG}\n"
git tag ${dir}/${TAG}
git push origin ${dir}/${TAG}
done

0 comments on commit cec9d49

Please sign in to comment.