소스 검색

Merge branch 'master' into minor

Michael Bromley 1 개월 전
부모
커밋
2a61a57c4e
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'