We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 90b45b4 + 0b12f86 commit f755e73Copy full SHA for f755e73
.github/workflows/publish-action.yml
@@ -19,5 +19,9 @@ jobs:
19
node-version: "20.14.0"
20
cache: "pnpm"
21
- run: pnpm install
22
+ - name: Set publishing config
23
+ run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"
24
+ env:
25
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
26
- name: publish
27
run: pnpm workspace:publish
package.json
@@ -7,7 +7,7 @@
7
"type": "module",
8
"scripts": {
9
"test": "echo \"Error: no test specified\" && exit 1",
10
- "workspace:publish": "pnpm publish -r",
+ "workspace:publish": "pnpm publish -r --no-git-checks",
11
"prepare": "husky",
12
"lint:commit": "commitlint --edit",
13
"githook:commitMessage": "pnpm lint:commit"
0 commit comments