We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a75395 commit 166e546Copy full SHA for 166e546
2 files changed
.github/workflows/general.yaml
@@ -57,6 +57,8 @@ jobs:
57
node-version-file: package.json
58
- name: Install Dependencies
59
run: pnpm install:ci
60
+ - name: Login to Npm
61
+ run: pnpm login:ci
62
- name: Release Extension
63
uses: cycjimmy/semantic-release-action@v5
64
env:
package.json
@@ -23,6 +23,7 @@
23
"format": "biome check --write",
24
"install:ci": "pnpm install --ignore-scripts",
25
"lint": "biome check",
26
+ "login:ci": "pnpm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}",
27
"prepare": "husky",
28
"publish:py": "uv --directory sdk-py publish",
29
"publish:ts": "pnpm -r publish --access public --ignore-scripts --no-git-checks",
0 commit comments