From f17f04b4058c28fa555c59a84478aae12edfb629 Mon Sep 17 00:00:00 2001 From: Sergey Petushkov Date: Thu, 13 Feb 2025 16:50:36 +0100 Subject: [PATCH] chore(ci): only push tags for public packages --- .github/workflows/publish-packages.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-packages.yaml b/.github/workflows/publish-packages.yaml index f517772b1c3..f8c21b94d14 100644 --- a/.github/workflows/publish-packages.yaml +++ b/.github/workflows/publish-packages.yaml @@ -1,4 +1,4 @@ -name: Publish +name: Publish packages to npm on: # NOTE: avoid using the manual execution unless is the only way to fix some issue, # rather retry failed jobs in case of flakes. The manual execution can potentially @@ -59,7 +59,7 @@ jobs: - name: "Publish tags" run: | - npx lerna list -a --json | \ + npx lerna list --json | \ jq -r '.[] | .name + "@" + .version' | \ xargs -i sh -c "git tag -a {} -m {} || true" git push --follow-tags