Skip to content

Commit

Permalink
Update python-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdenobel authored Feb 14, 2024
1 parent 51463ee commit 6f766dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py bdist_wheel
twine upload -u $TWINE_USERNAME -p $TWINE_PASSWORD dist/*
twine upload -u $TWINE_USERNAME -p $TWINE_PASSWORD --verbose dist/*
publish-unix:
runs-on: ubuntu-latest
Expand All @@ -61,7 +61,7 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
twine upload -u $TWINE_USERNAME -p $TWINE_PASSWORD dist/*-manylinux*.whl
twine upload -u $TWINE_USERNAME -p $TWINE_PASSWORD --verbose dist/*-manylinux*.whl
publish-source:
runs-on: ubuntu-latest
Expand All @@ -85,5 +85,5 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist
twine upload -u $TWINE_USERNAME -p $TWINE_PASSWORD dist/*.tar.gz
twine upload -u $TWINE_USERNAME -p $TWINE_PASSWORD --verbose dist/*.tar.gz

0 comments on commit 6f766dd

Please sign in to comment.