We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f866a5 commit 212f0feCopy full SHA for 212f0fe
1 file changed
.github/workflows/build.yml
@@ -101,6 +101,8 @@ jobs:
101
uses: actions/setup-node@v6
102
with:
103
node-version-file: vscode/.nvmrc
104
+ registry-url: https://registry.npmjs.org
105
+ package-manager-cache: false
106
107
- name: Install Dependencies
108
run: |
@@ -178,12 +180,10 @@ jobs:
178
180
npm pack
179
181
182
- name: Publishing on NPM
- uses: JS-DevTools/npm-publish@v4
- with:
183
- token: ${{ secrets.NPM_TOKEN }}
184
- package: ./code-oss
185
- access: public
186
- provenance: true
+ run: |
+ npm install -g npm@latest
+ cd code-oss
+ npm publish --provenance
187
188
- name: Release on GitHub
189
uses: softprops/action-gh-release@v3
0 commit comments