Skip to content

Commit d44cfe7

Browse files
authored
chore(ci): only push tags for public packages (#6721)
1 parent ceb54bd commit d44cfe7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-packages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish
1+
name: Publish packages to npm
22
on:
33
# NOTE: avoid using the manual execution unless is the only way to fix some issue,
44
# rather retry failed jobs in case of flakes. The manual execution can potentially
@@ -59,7 +59,7 @@ jobs:
5959
6060
- name: "Publish tags"
6161
run: |
62-
npx lerna list -a --json | \
62+
npx lerna list --json | \
6363
jq -r '.[] | .name + "@" + .version' | \
6464
xargs -i sh -c "git tag -a {} -m {} || true"
6565
git push --follow-tags

0 commit comments

Comments
 (0)