File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -120,5 +120,9 @@ jobs:
120120 TWINE_PASSWORD : " ${{ secrets.PYPI_TOKEN }}"
121121 TWINE_REPOSITORY_URL : " ${{ secrets.PYPI_REPOSITORY_URL }}"
122122 run : |
123- python -m twine check ${{ env.PKGDIR }}/dist/*
124- python -m twine upload --skip-existing ${{ env.PKGDIR }}/dist/*
123+ python -m twine check \
124+ ${{ env.PKGDIR }}/dist/*.zip \
125+ ${{ env.PKGDIR }}/dist/*.whl
126+ python -m twine upload --skip-existing \
127+ ${{ env.PKGDIR }}/dist/*.zip \
128+ ${{ env.PKGDIR }}/dist/*.whl
Original file line number Diff line number Diff line change @@ -120,5 +120,9 @@ jobs:
120120 TWINE_PASSWORD : " ${{ secrets.PYPI_TOKEN }}"
121121 TWINE_REPOSITORY_URL : " ${{ secrets.PYPI_REPOSITORY_URL }}"
122122 run : |
123- python -m twine check ${{ env.PKGDIR }}/dist/*
124- python -m twine upload --skip-existing ${{ env.PKGDIR }}/dist/*
123+ python -m twine check \
124+ ${{ env.PKGDIR }}/dist/*.zip \
125+ ${{ env.PKGDIR }}/dist/*.whl
126+ python -m twine upload --skip-existing \
127+ ${{ env.PKGDIR }}/dist/*.zip \
128+ ${{ env.PKGDIR }}/dist/*.whl
You can’t perform that action at this time.
0 commit comments