We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8543778 commit efe8ee0Copy full SHA for efe8ee0
.github/workflows/ci.yml
@@ -236,6 +236,15 @@ jobs:
236
if: startsWith(github.ref, 'refs/tags/')
237
run: npx vsce publish --pat ${{ secrets.MARKETPLACE_TOKEN }} ${{ steps.tag_name.outputs.tag }} --no-git-tag-version
238
239
+ - name: Publish LSP as pre-release to NPM
240
+ if: github.ref == 'refs/heads/master'
241
+ working-directory: server
242
+ run: |
243
+ npm version preminor --preid next
244
+ npm publish --access public --tag next
245
+ env:
246
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
247
+
248
- name: Publish LSP to NPM
249
250
working-directory: server
0 commit comments