We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 885b7c0 commit 39d0d6eCopy full SHA for 39d0d6e
1 file changed
.github/workflows/publish.yml
@@ -108,7 +108,7 @@ jobs:
108
TWINE_USERNAME: __token__
109
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
110
run: |
111
- pip install "twine>=6.0.0"
+ pip install "twine>=5.0,<6.1"
112
twine upload dist/*
113
114
create-release:
@@ -139,7 +139,7 @@ jobs:
139
publish-mcp-registry:
140
name: Publish to MCP Registry
141
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
142
- needs: [build]
+ needs: [build, publish-pypi]
143
runs-on: ubuntu-latest
144
permissions:
145
id-token: write
0 commit comments