File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Release Extension
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - " v*.*.*"
7
+
8
+ jobs :
9
+ build-and-deploy :
10
+ runs-on : ubuntu-latest
11
+
12
+ steps :
13
+ - name : Checkout code
14
+ uses : actions/checkout@v2
15
+
16
+ - name : Set up Node.js
17
+ uses : actions/setup-node@v2
18
+ with :
19
+ node-version : " 14"
20
+
21
+ - name : Install dependencies
22
+ run : pnpm install
23
+
24
+ - name : Run tests
25
+ run : pnpm test
26
+
27
+ - name : Package extension
28
+ run : vsce package
29
+
30
+ - name : Publish to Marketplace
31
+ env :
32
+ VSCE_TOKEN : ${{ secrets.VSCE_TOKEN }}
33
+ run : vsce publish
Original file line number Diff line number Diff line change 24
24
" Other"
25
25
],
26
26
"activationEvents" : [],
27
- "main" : " ./out /extension.js" ,
27
+ "main" : " ./dist /extension.js" ,
28
28
"contributes" : {
29
29
"commands" : [
30
30
{
You can’t perform that action at this time.
0 commit comments