From 9d5a59691f31515f88bc4fd22fe310a955288da1 Mon Sep 17 00:00:00 2001 From: Jacob Date: Thu, 15 Feb 2024 09:36:10 +0100 Subject: [PATCH] Update python-publish.yml --- .github/workflows/python-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 62fe10d..e3341b9 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -36,7 +36,7 @@ jobs: TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py bdist_wheel - twine upload -u $TWINE_USERNAME -p $TWINE_PASSWORD --verbose dist/* + twine upload --verbose dist/* publish-unix: runs-on: ubuntu-latest @@ -61,7 +61,7 @@ jobs: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | - twine upload -u $TWINE_USERNAME -p $TWINE_PASSWORD --verbose dist/*-manylinux*.whl + twine upload --verbose dist/*-manylinux*.whl publish-source: runs-on: ubuntu-latest @@ -85,5 +85,5 @@ jobs: TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py sdist - twine upload -u $TWINE_USERNAME -p $TWINE_PASSWORD --verbose dist/*.tar.gz + twine upload --verbose dist/*.tar.gz