diff --git a/.github/workflows/alpha-release.yml b/.github/workflows/alpha-release.yml index d8753c2bc21..4186d0a17bf 100644 --- a/.github/workflows/alpha-release.yml +++ b/.github/workflows/alpha-release.yml @@ -35,6 +35,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: + registry-url: 'https://registry.npmjs.org' node-version: 12.x - name: Install dependencies for master run: yarn install --frozen-lockfile --non-interactive diff --git a/bin/publish.js b/bin/publish.js index 88463e61574..0c5b2585f55 100644 --- a/bin/publish.js +++ b/bin/publish.js @@ -317,7 +317,7 @@ let cli = readline.createInterface({ * @param {string} otp - Token to make publish requests to npm */ function publishPackage(distTag, tarball, otp) { - let cmd = `npm publish ${tarball} --tag=${distTag} --access=public`; + let cmd = `npm publish ${tarball} --tag=${distTag} --access=public --verbose`; if (otp) { cmd += ` --otp=${otp}`;