File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
name : Publish
2
2
3
3
on :
4
- workflow_dispatch : # Allows manual triggering of the workflow
4
+ workflow_dispatch : # Allows manual triggering of the workflow
5
5
6
6
jobs :
7
7
publish :
8
8
runs-on : ubuntu-latest
9
9
10
10
steps :
11
- - name : Checkout repository
12
- uses : actions/checkout@v3
11
+ - name : Checkout repository
12
+ uses : actions/checkout@v3
13
13
14
- - name : Set up Node.js
15
- uses : actions/setup-node@v3
16
- with :
17
- node-version : ' 20 ' # Adjust the Node.js version if necessary
14
+ - name : Set up Node.js
15
+ uses : actions/setup-node@v3
16
+ with :
17
+ node-version : " 20 " # Adjust the Node.js version if necessary
18
18
19
- - name : Install dependencies
20
- run : npm install
19
+ - name : Install dependencies
20
+ run : npm install
21
21
22
- - name : Publish VS Code extension
23
- env :
24
- VSCE_PAT : ${{ secrets.VSCE_TOKEN }} # Use the PAT stored as a secret
25
- run : npm run deploy
22
+ - name : Publish VS Code extension
23
+ env :
24
+ VSCE_PAT : ${{ secrets.VSCE_TOKEN }} # Use the PAT stored as a secret
25
+ run : npm run package deploy
You can’t perform that action at this time.
0 commit comments