From d22eeda6cd555f5595dce5af7365916360d327e1 Mon Sep 17 00:00:00 2001 From: Kevin Ross Date: Wed, 22 Jan 2025 17:01:35 -0600 Subject: [PATCH] workaround for https://github.com/intuit/auto/issues/2488 --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 67d76f0..2ff5d77 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,5 +34,10 @@ jobs: # cannot run this on branches because it doesn't keep the canary version from auto shipit, can only secondarily publish to npm for main branch - name: Publish secondarily to npm - run: lerna exec --stream --parallel -- npm publish --access=public --ignore-scripts --@alienfast:registry='https://registry.npmjs.org' + # waiting on bug/related pr/auto release https://github.com/intuit/auto/issues/2488 + # run: lerna exec --stream --parallel -- npm publish --access=public --ignore-scripts --@alienfast:registry='https://registry.npmjs.org' + run: > + cd packages/logger && npm publish --access=public --ignore-scripts --@alienfast:registry='https://registry.npmjs.org' + && cd ../logger-browser && npm publish --access=public --ignore-scripts --@alienfast:registry='https://registry.npmjs.org' + && cd ../logger-node && npm publish --access=public --ignore-scripts --@alienfast:registry='https://registry.npmjs.org' if: github.ref == 'refs/heads/main'