Skip to content

Commit 39d0d6e

Browse files
sync: fix: pin twine <6.1 and fix MCP Registry publish dependency (#14)
Synced from monorepo directory: midjourney
1 parent 885b7c0 commit 39d0d6e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
TWINE_USERNAME: __token__
109109
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
110110
run: |
111-
pip install "twine>=6.0.0"
111+
pip install "twine>=5.0,<6.1"
112112
twine upload dist/*
113113
114114
create-release:
@@ -139,7 +139,7 @@ jobs:
139139
publish-mcp-registry:
140140
name: Publish to MCP Registry
141141
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
142-
needs: [build]
142+
needs: [build, publish-pypi]
143143
runs-on: ubuntu-latest
144144
permissions:
145145
id-token: write

0 commit comments

Comments
 (0)