Skip to content

Commit 90f256f

Browse files
committed
🧑‍💻 Just for test.
1 parent d26bf01 commit 90f256f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/rw_python_package.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)