We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0725216 commit 832107dCopy full SHA for 832107d
.github/actions/setup/action.yml
@@ -19,6 +19,7 @@ runs:
19
with:
20
node-version: ${{ inputs.node-version }}
21
cache: pnpm
22
+ registry-url: https://registry.npmjs.org
23
24
- name: Install dependencies
25
run: pnpm install
.github/workflows/release.yml
@@ -38,6 +38,8 @@ jobs:
38
- name: Publish to npm
39
if: ${{ !startsWith(github.ref_name, 'vscode-extension/') }}
40
run: pnpm --filter "./packages/${{ steps.parse-tag.outputs.package }}" publish --no-git-checks --provenance
41
+ env:
42
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
43
44
- name: Publish VS Code Extension
45
if: startsWith(github.ref_name, 'vscode-extension/')
0 commit comments