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 66041e1 commit ae43629Copy full SHA for ae43629
.github/workflows/check-npm-token-permissions.yml
@@ -3,17 +3,17 @@ name: Check NPM Publish Permissions
3
on:
4
push:
5
env:
6
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
7
jobs:
8
build:
9
runs-on: ubuntu-latest
10
steps:
11
- name: Checkout repository
12
uses: actions/checkout@v4
13
14
- - name: Configure npm authentication
15
- run: |
16
- echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
+ # - name: Configure npm authentication
+ # run: |
+ # echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
17
18
- name: Set up Node.js
19
uses: actions/setup-node@v4
0 commit comments