Skip to content

Commit 86c6b35

Browse files
committed
fix: files to include
1 parent 10d3304 commit 86c6b35

File tree

4 files changed

+36
-48
lines changed

4 files changed

+36
-48
lines changed

.changeset/wet-masks-lie.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@kj455/mcp-kibela': patch
3+
---
4+
5+
fix files to include

.github/workflows/ci.yml

+25-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: CI
22

33
on:
4+
workflow_dispatch:
45
push:
5-
branches: [main]
6-
pull_request:
7-
branches: [main]
6+
branches:
7+
- '**'
88

99
jobs:
1010
build:
@@ -42,3 +42,25 @@ jobs:
4242

4343
- name: Build
4444
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 }}

.github/workflows/release.yml

-42
This file was deleted.

package.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@
33
"version": "0.1.9",
44
"description": "MCP server implementation that integrates with Kibela API",
55
"type": "module",
6+
"license": "MIT",
67
"main": "dist/index.js",
78
"module": "dist/index.js",
89
"types": "dist/index.d.ts",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/kj455/mcp-kibela.git"
13+
},
914
"files": [
1015
"dist",
11-
"README.md",
12-
"smithery.yaml",
13-
"Dockerfile"
16+
"README.md"
1417
],
1518
"bin": {
1619
"mcp-kibela": "./dist/index.js"

0 commit comments

Comments
 (0)