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.
1 parent 8cd47c7 commit ef5fbdeCopy full SHA for ef5fbde
.github/workflows/release.yml
@@ -35,11 +35,20 @@ jobs:
35
cd python/thirdweb-ai
36
uv build
37
38
- - name: Publish to PyPI
+ - name: Publish AI to PyPI
39
uses: pypa/gh-action-pypi-publish@release/v1
40
with:
41
user: __token__
42
password: ${{ secrets.PYPI_API_TOKEN }}
43
- packages-dir: python/thirdweb-mcp/dist python/thirdweb-ai/dist
+ 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
53
verbose: true
54
skip-existing: true
0 commit comments