File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -159,10 +159,15 @@ jobs:
159159 # UV publish with token authentication
160160 if [ "${{ inputs.operation }}" = "publish-testpypi" ]; then
161161 echo "Publishing to TestPyPI..."
162- uv publish --publish-url https://test.pypi.org/legacy/ --token ${{ secrets.TEST_PYPI_API_TOKEN }}
162+ # uv publish --publish-url https://test.pypi.org/legacy/ --token ${{ secrets.TEST_PYPI_API_TOKEN }} --verbose
163+ uv publish \
164+ --publish-url https://test.pypi.org/legacy/ \
165+ --username __token__ \
166+ --password ${{ secrets.TEST_PYPI_API_TOKEN }} \
167+ --verbose
163168 else
164169 echo "Publishing to PyPI..."
165- uv publish --token ${{ secrets.PYPI_API_TOKEN }}
170+ uv publish --token ${{ secrets.PYPI_API_TOKEN }} --verbose
166171 fi
167172
168173 echo "✅ Published to ${{ inputs.operation == 'publish-pypi' && 'PyPI' || 'TestPyPI' }} successfully"
You can’t perform that action at this time.
0 commit comments