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 a94267d commit cb4e184Copy full SHA for cb4e184
.github/workflows/publish.yml
@@ -0,0 +1,25 @@
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@v4
12
+ - uses: actions/setup-node@v4
13
+ with:
14
+ node-version: 20
15
+ - run: npm install -g pnpm
16
+ - run: pnpm install
17
+ - name: Publish to Open VSX Registry
18
+ uses: HaaLeo/publish-vscode-extension@v1
19
20
+ pat: ${{ secrets.OPEN_VSX_TOKEN }}
21
+ - name: Publish to Visual Studio Marketplace
22
23
24
+ pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
25
+ registryUrl: https://marketplace.visualstudio.com
0 commit comments