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 2993d01 commit 7f32166Copy full SHA for 7f32166
.github/workflows/release.yml
@@ -24,6 +24,15 @@ jobs:
24
node-version: 18.x
25
cache: "pnpm"
26
- run: pnpm install --frozen-lockfile
27
+
28
+ - name: Create .npmrc
29
+ run: |
30
+ cat << EOF > "$HOME/.npmrc"
31
+ //registry.npmjs.org/:_authToken=$NPM_TOKEN
32
+ EOF
33
+ env:
34
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
35
36
- name: Create Release Pull Request or Publish
37
id: changesets
38
uses: changesets/action@v1
.npmrc
@@ -1,2 +1 @@
1
auto-install-peers = true
2
-//registry.npmjs.org/:_authToken=${process.env.NPM_TOKEN}
0 commit comments