Переглянути джерело

chore: Enable silly logging on Lerna publish

Trying to figure out why publish fails
Michael Bromley 1 місяць тому
батько
коміт
852bd9ee8e
1 змінених файлів з 3 додано та 3 видалено
  1. 3 3
      .github/workflows/publish_to_npm.yml

+ 3 - 3
.github/workflows/publish_to_npm.yml

@@ -128,15 +128,15 @@ jobs:
       # Publish to npm with appropriate dist-tag
       - name: Publish to NPM (release)
         if: matrix.type == 'release'
-        run: npx lerna publish from-package --yes
+        run: npx lerna publish from-package --yes --loglevel silly
 
       - name: Publish to NPM (master-nightly)
         if: matrix.type == 'master-nightly' && steps.commit_check.outputs.should_publish == 'true'
-        run: npx lerna publish from-package --yes --dist-tag master --no-git-reset
+        run: npx lerna publish from-package --yes --dist-tag master --no-git-reset --loglevel silly
 
       - name: Publish to NPM (minor-nightly)
         if: matrix.type == 'minor-nightly' && steps.commit_check.outputs.should_publish == 'true'
-        run: npx lerna publish from-package --yes --dist-tag minor --no-git-reset
+        run: npx lerna publish from-package --yes --dist-tag minor --no-git-reset --loglevel silly
 
       - name: Skip publish (no new commits)
         if: matrix.type != 'release' && steps.commit_check.outputs.should_publish == 'false'