Skip to content

Commit

Permalink
Implement tag-porting script function for pushing newly-added tags to…
Browse files Browse the repository at this point in the history
… monorepo
  • Loading branch information
MajorLift committed Oct 12, 2023
1 parent 749c540 commit 6c5cd51
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/migrate-tags.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ for pair in "$(prepend-package-name)"; do
echo "$pair" | xargs -n 2 bash -c 'git tag "$0" "$1"'
done

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

0 comments on commit 6c5cd51

Please sign in to comment.