Skip to content

Commit 6c5cd51

Browse files
committed
Implement tag-porting script function for pushing newly-added tags to monorepo
1 parent 749c540 commit 6c5cd51

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/migrate-tags.sh

100644100755
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ for pair in "$(prepend-package-name)"; do
1919
echo "$pair" | xargs -n 2 bash -c 'git tag "$0" "$1"'
2020
done
2121

22+
for pair in "$(prepend-package-name)"; do
23+
echo "$pair" | cut -d' ' -f1 | xargs -n 1 bash -c 'git push origin "$0"'
24+
done

0 commit comments

Comments
 (0)