We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bc076e7 + 3c8cf46 commit c28fa8cCopy full SHA for c28fa8c
.github/workflows/release.yml
@@ -0,0 +1,19 @@
1
+name: Release
2
+on:
3
+ push:
4
+ tags:
5
+ - "v*.*.*"
6
+permissions:
7
+ contents: write
8
+jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: Create package artifact
14
+ run: npx @anthropic-ai/mcpb pack
15
+ - name: Release
16
+ uses: softprops/action-gh-release@v2
17
+ with:
18
+ files: "*.mcpb"
19
+ draft: true
.mcpbignore
@@ -1,3 +1,6 @@
.*
tests/
__pycache__/
+Dockerfile
+server.json
+smithery.yaml
0 commit comments