File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Release to PyPI
33on :
44 push :
55 branches :
6- - main
6+ - master
77 paths-ignore :
88 - ' **.md'
99 - ' .gitignore'
@@ -26,13 +26,18 @@ jobs:
2626 - name : Install uv
2727 run : |
2828 curl -LsSf https://astral.sh/uv/install.sh | sh
29+ uv venv
30+ source .venv/bin/activate
2931
3032 - name : Install build dependencies
3133 run : |
34+ source .venv/bin/activate
3235 uv pip install build twine
3336
3437 - name : Build package
35- run : python -m build
38+ run : |
39+ source .venv/bin/activate
40+ python -m build
3641
3742 - name : Publish package to PyPI
3843 uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " mcp_client_cli"
7- version = " 0.3 .0"
7+ version = " 1.0 .0"
88description = " Command line interface for MCP client"
99readme = " README.md"
1010requires-python = " >=3.12"
You can’t perform that action at this time.
0 commit comments