Skip to content

Commit 85799bb

Browse files
committed
add action to publish to pypi
1 parent 7b0a037 commit 85799bb

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Diff for: .github/workflows/publish.yml

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

0 commit comments

Comments
 (0)