File tree 4 files changed +36
-48
lines changed
4 files changed +36
-48
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @kj455/mcp-kibela ' : patch
3
+ ---
4
+
5
+ fix files to include
Original file line number Diff line number Diff line change 1
1
name : CI
2
2
3
3
on :
4
+ workflow_dispatch :
4
5
push :
5
- branches : [main]
6
- pull_request :
7
- branches : [main]
6
+ branches :
7
+ - ' **'
8
8
9
9
jobs :
10
10
build :
42
42
43
43
- name : Build
44
44
run : npm run build
45
+
46
+ release :
47
+ needs : build
48
+ runs-on : ubuntu-latest
49
+ permissions :
50
+ contents : write
51
+ pull-requests : write
52
+ id-token : write
53
+ steps :
54
+ - uses : actions/checkout@v4
55
+
56
+ - name : Install dependencies
57
+ run : npm ci
58
+
59
+ - name : Create Release Pull Request or Publish to npm
60
+ id : changesets
61
+ uses : changesets/action@v1
62
+ with :
63
+ publish : npm run release
64
+ env :
65
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
66
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
"version" : " 0.1.9" ,
4
4
"description" : " MCP server implementation that integrates with Kibela API" ,
5
5
"type" : " module" ,
6
+ "license" : " MIT" ,
6
7
"main" : " dist/index.js" ,
7
8
"module" : " dist/index.js" ,
8
9
"types" : " dist/index.d.ts" ,
10
+ "repository" : {
11
+ "type" : " git" ,
12
+ "url" : " git+https://github.com/kj455/mcp-kibela.git"
13
+ },
9
14
"files" : [
10
15
" dist" ,
11
- " README.md" ,
12
- " smithery.yaml" ,
13
- " Dockerfile"
16
+ " README.md"
14
17
],
15
18
"bin" : {
16
19
"mcp-kibela" : " ./dist/index.js"
You can’t perform that action at this time.
0 commit comments