Skip to content

Commit

Permalink
devtool: fix release ci .npmrc
Browse files Browse the repository at this point in the history
  • Loading branch information
akfm.sato committed Jul 15, 2022
1 parent e560773 commit 3c4d193
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -28,7 +28,9 @@ jobs:
- name: setup npm auth
run: |
echo "registry=https://registry.npmjs.org" >> ~/.npmrc
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" >> ~/.npmrc
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: npm registry release
run: yarn publish
env:
Expand Down

0 comments on commit 3c4d193

Please sign in to comment.