File tree Expand file tree Collapse file tree 3 files changed +1387
-13
lines changed Expand file tree Collapse file tree 3 files changed +1387
-13
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,19 @@ jobs:
19
19
20
20
steps :
21
21
- name : Checkout
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
23
23
with :
24
24
fetch-depth : 0
25
25
26
26
- name : Setup pnpm
27
27
uses : pnpm/action-setup@v2
28
28
with :
29
- version : 8
29
+ version : 9
30
30
31
31
- name : Setup Node.js
32
- uses : actions/setup-node@v3
32
+ uses : actions/setup-node@v4
33
33
with :
34
- node-version : 18
34
+ node-version : 18.x
35
35
cache : ' pnpm'
36
36
37
37
- name : Install dependencies
43
43
run : npx semantic-release
44
44
45
45
- name : Publish Extension
46
- run : npx @vscode/vsce publish -p ${{ secrets.VSCE_PAT }} --no-dependencies
46
+ run : npm run deploy
47
+ env :
48
+ VSCE_PAT : ${{ secrets.VSCE_PAT }}
Original file line number Diff line number Diff line change 285
285
"esbuild" : " pnpm run esbuild-base --sourcemap" ,
286
286
"watch" : " pnpm run esbuild-base --sourcemap --watch" ,
287
287
"test-compile" : " tsc -p ./" ,
288
- "prepare" : " husky install"
288
+ "prepare" : " husky install" ,
289
+ "deploy" : " vsce publish"
289
290
},
290
291
"devDependencies" : {
291
292
"@semantic-release/changelog" : " ^6.0.3" ,
299
300
"@typescript-eslint/eslint-plugin" : " ^5.38.1" ,
300
301
"@typescript-eslint/parser" : " ^5.38.1" ,
301
302
"@vscode/test-electron" : " ^2.1.5" ,
303
+ "@vscode/vsce" : " ^3.3.2" ,
302
304
"conventional-changelog-conventionalcommits" : " ^5.0.0" ,
303
305
"esbuild" : " ^0.15.13" ,
304
306
"eslint" : " ^8.24.0" ,
You can’t perform that action at this time.
0 commit comments