Skip to content

Commit fcf23cc

Browse files
committed
Got the wrong environment variable name
1 parent 1f23f13 commit fcf23cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
- name: Build the project
1717
run: npm run build
1818
- name: Add _auth to .npmrc
19-
run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_AUTH_TOKEN}"
20-
- name: Publish to NPM
21-
run: npm run publish:lib
19+
run: npm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"
2220
env:
2321
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2422
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
23+
- name: Publish to NPM
24+
run: npm run publish:lib

0 commit comments

Comments
 (0)