We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fac9dd commit d1f1d6dCopy full SHA for d1f1d6d
.github/workflows/reviewing_changes.yml
@@ -57,6 +57,9 @@ jobs:
57
with:
58
node-version: ${{ matrix.node }}
59
60
+ - name: Install npm-cli-login
61
+ run: npm install -g npm-cli-login
62
+
63
- name: Setup staging npm package
64
if: ${{ github.event.inputs.package_url != '' }}
65
run: |
@@ -68,7 +71,11 @@ jobs:
68
71
echo "Waiting for Verdaccio to be ready..."; sleep 2;
69
72
done
70
73
npm config set registry http://localhost:4873
- echo -e "dummy\ndummy\[email protected]" | npm adduser --registry http://localhost:4873
74
+ npm-cli-login \
75
+ --username dummy \
76
+ --password dummy \
77
+ --email [email protected] \
78
+ --registry http://localhost:4873
79
npm publish staging_package.tgz --registry http://localhost:4873/
80
shell: bash
81
0 commit comments