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 c89011d commit b18abf3Copy full SHA for b18abf3
.github/workflows/publish.yml
@@ -22,8 +22,10 @@ jobs:
22
run: |
23
git config user.name "${GITHUB_ACTOR}"
24
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
25
- echo //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }} > .npmrc
+ echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
26
cat .npmrc
27
+ env:
28
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
29
- name: Install dependencies
30
run: npm ci
31
- name: Run tests
0 commit comments