Skip to content

Commit ef5fbde

Browse files
committed
split publishing
1 parent 8cd47c7 commit ef5fbde

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,20 @@ jobs:
3535
cd python/thirdweb-ai
3636
uv build
3737
38-
- name: Publish to PyPI
38+
- name: Publish AI to PyPI
3939
uses: pypa/gh-action-pypi-publish@release/v1
4040
with:
4141
user: __token__
4242
password: ${{ secrets.PYPI_API_TOKEN }}
43-
packages-dir: python/thirdweb-mcp/dist python/thirdweb-ai/dist
43+
packages-dir: python/thirdweb-ai/dist
44+
verbose: true
45+
skip-existing: true
46+
47+
- name: Publish MCP to PyPI
48+
uses: pypa/gh-action-pypi-publish@release/v1
49+
with:
50+
user: __token__
51+
password: ${{ secrets.PYPI_API_TOKEN }}
52+
packages-dir: python/thirdweb-mcp/dist
4453
verbose: true
4554
skip-existing: true

0 commit comments

Comments
 (0)