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 c661eab commit c0ee105Copy full SHA for c0ee105
.github/workflows/build.yml
@@ -0,0 +1,24 @@
1
+on:
2
+ push:
3
+ tags:
4
+ - '*'
5
+
6
+name: Deploy Extension
7
+jobs:
8
+ deploy:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - uses: actions/setup-node@v1
13
+ with:
14
+ node-version: 12
15
+ - run: npm ci
16
+ - name: Publish to Open VSX Registry
17
+ uses: HaaLeo/publish-vscode-extension@v0
18
19
+ pat: ${{ secrets.OPEN_VSX_TOKEN }}
20
+ - name: Publish to Visual Studio Marketplace
21
22
23
+ pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
24
+ registryUrl: https://marketplace.visualstudio.com
0 commit comments