We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0833203 commit 29abc1dCopy full SHA for 29abc1d
.github/workflows/deploy.yml
@@ -25,11 +25,17 @@ jobs:
25
uses: actions/[email protected]
26
27
# Login to npm
28
- - name: Login to npm
29
- run: |
30
- npm-cli-login -u '${{ secrets.NPM_USERNAME }}' -p '${{ secrets.NPM_PASSWORD }}' -e '${{ secrets.NPM_EMAIL }}'
+ # - name: Login to npm
+ # run: |
+ # npm-cli-login -u '${{ secrets.NPM_USERNAME }}' -p '${{ secrets.NPM_PASSWORD }}' -e '${{ secrets.NPM_EMAIL }}'
31
+
32
+ # Publish to npm
33
+ #- name: Publish to npm
34
35
+ # npm publish
36
37
# Publish to npm
38
- name: Publish to npm
39
run: |
40
+ echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
41
npm publish
0 commit comments