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 85a7f9c commit 2d83c72Copy full SHA for 2d83c72
.github/workflows/deploy.yml
@@ -3,17 +3,17 @@ on:
3
tags:
4
- "*"
5
6
-name: Deploy Extension
+name: "Release Vscode Plugin"
7
+
8
jobs:
- deploy:
9
+ npmInstall:
10
+ name: npm install
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v2
- - uses: actions/setup-node@v1
- with:
14
- node-version: 13
15
- - name: Publish to Visual Studio Marketplace
16
- uses: HaaLeo/publish-vscode-extension@v0
+ - name: Vscode release plugin
+ uses: JCofman/vscodeaction@v2.0.1
+ env:
17
+ VS_MARKETPLACE_TOKEN: ${{ secrets.VS_MARKETPLACE_TOKEN }}
18
with:
- pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
19
- registryUrl: https://marketplace.visualstudio.com
+ args: publish -p $VS_MARKETPLACE_TOKEN
0 commit comments