File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Publish Extension
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v*'
7+
8+ jobs :
9+ publish :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v4
13+
14+ - name : Setup Node.js
15+ uses : actions/setup-node@v4
16+ with :
17+ node-version : ' 20'
18+
19+ - name : Install dependencies
20+ run : npm ci
21+
22+ - name : Run tests
23+ run : npm run test:unit
24+
25+ - name : Compile
26+ run : npm run compile
27+
28+ - name : Publish to Marketplace
29+ run : npx @vscode/vsce publish -p ${{ secrets.VSCE_PAT }}
Original file line number Diff line number Diff line change 22 "name" : " diff-to-commit" ,
33 "displayName" : " Diff to Commit" ,
44 "description" : " Fill SCM commit message from git diff" ,
5- "version" : " 0 .0.1 " ,
6- "publisher" : " local " ,
5+ "version" : " 1 .0.0 " ,
6+ "publisher" : " Dayond " ,
77 "license" : " MIT" ,
88 "engines" : {
99 "vscode" : " ^1.80.0"
You can’t perform that action at this time.
0 commit comments