Skip to content

Commit d22eeda

Browse files
committed
workaround for intuit/auto#2488
1 parent f67fb4d commit d22eeda

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,10 @@ jobs:
3434

3535
# 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
3636
- name: Publish secondarily to npm
37-
run: lerna exec --stream --parallel -- npm publish --access=public --ignore-scripts --@alienfast:registry='https://registry.npmjs.org'
37+
# waiting on bug/related pr/auto release https://github.com/intuit/auto/issues/2488
38+
# run: lerna exec --stream --parallel -- npm publish --access=public --ignore-scripts --@alienfast:registry='https://registry.npmjs.org'
39+
run: >
40+
cd packages/logger && npm publish --access=public --ignore-scripts --@alienfast:registry='https://registry.npmjs.org'
41+
&& cd ../logger-browser && npm publish --access=public --ignore-scripts --@alienfast:registry='https://registry.npmjs.org'
42+
&& cd ../logger-node && npm publish --access=public --ignore-scripts --@alienfast:registry='https://registry.npmjs.org'
3843
if: github.ref == 'refs/heads/main'

0 commit comments

Comments
 (0)