Skip to content

Commit 246df09

Browse files
authored
add action to publish to pypi (#19)
1 parent 7b0a037 commit 246df09

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/publish.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
workflow_dispatch:
3+
4+
jobs:
5+
publish:
6+
name: Upload release to PyPI
7+
runs-on: ubuntu-latest
8+
environment:
9+
name: pypi
10+
url: "https://pypi.org/p/mcp-clickhouse"
11+
permissions:
12+
id-token: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: astral-sh/setup-uv@v5
16+
- run: uv python install
17+
- run: uv build
18+
- uses: pypa/gh-action-pypi-publish@release/v1

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mcp-clickhouse"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = "An MCP server for ClickHouse."
55
readme = "README.md"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)