Skip to content

Commit

Permalink
Explicitly upload signature files.
Browse files Browse the repository at this point in the history
  • Loading branch information
rtibbles committed Nov 1, 2022
1 parent 19808a9 commit d012a28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TESTPYPI_API_TOKEN }}
run: |
twine upload -s -r testpypi dist/*
twine upload -s -r testpypi dist/${{ inputs.whl-file-name }} dist/${{ inputs.whl-file-name }}.asc dist/${{ inputs.tar-file-name }} dist/${{ inputs.tar-file-name }}.asc
- name: Publish to PyPi
if: ${{ !inputs.test }}
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
twine upload -s dist/*
twine upload -s dist/${{ inputs.whl-file-name }} dist/${{ inputs.whl-file-name }}.asc dist/${{ inputs.tar-file-name }} dist/${{ inputs.tar-file-name }}.asc

0 comments on commit d012a28

Please sign in to comment.