We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cb32e0 commit 946080fCopy full SHA for 946080f
.github/workflows/release.yml
@@ -32,6 +32,11 @@ jobs:
32
run: |
33
git config user.name "github-actions[bot]"
34
git config user.email "github-actions[bot]@users.noreply.github.com"
35
+ - name: Setup npm config
36
+ run: |
37
+ npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
38
+ env:
39
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
40
- name: Install dependencies
41
run: npm ci
42
- name: Release package
.gitignore
@@ -1,3 +1,4 @@
1
+.npmrc
2
.idea/
3
.next/
4
.turbo/
0 commit comments