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 bd12c1d commit 880aaf0Copy full SHA for 880aaf0
.github/workflows/release.yml
@@ -55,11 +55,11 @@ jobs:
55
- name: Build
56
run: npm run build
57
58
+ - name: NPM Login
59
+ run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
60
+
61
- name: Publish to NPM
- env:
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: |
62
- lerna publish from-package --yes
+ run: lerna publish from-package --yes
63
64
publish-vscode-marketplace:
65
runs-on: ubuntu-latest
@@ -84,7 +84,7 @@ jobs:
84
- name: Publish to VSCode Marketplace
85
working-directory: extensions/vscode
86
env:
87
- VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
+ VSCE_PAT: ${{ secrets.VSCE_PAT }}
88
run: vsce publish
89
90
publish-open-vsx:
0 commit comments