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 eb307a4 commit a4377caCopy full SHA for a4377ca
.github/workflows/publish.yml
@@ -1,22 +1,22 @@
1
+name: Release
2
on:
3
push:
4
tags:
5
- "*"
6
-name: Deploy Extension
7
jobs:
8
- deploy:
+ release:
9
runs-on: ubuntu-latest
10
+
11
steps:
12
- uses: actions/checkout@v2
13
- uses: actions/setup-node@v1
14
with:
- node-version: 12
15
+ node-version: 16
16
+ registry-url: https://registry.npmjs.org/
17
- - run: npm ci
18
+ - name: Install vsce
19
+ run: npm i -g vsce
20
- - name: Publish to Visual Studio Marketplace
- uses: HaaLeo/publish-vscode-extension@v0
- with:
21
- pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
22
- registryUrl: https://marketplace.visualstudio.com
+ - name: Publish
+ run: vsce publish -p ${{ secrets.VS_MARKETPLACE_TOKEN }}
0 commit comments