We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f7bfb5 commit 3d0368eCopy full SHA for 3d0368e
1 file changed
action.yml
@@ -121,11 +121,14 @@ runs:
121
122
- name: Push to PyPI
123
if: (steps.get-versions.outputs.new-version == 'true') && (steps.test-sdist.outputs.result == 'true') && (steps.test-bdist-wheel.outputs.result == 'true')
124
- uses: pypa/gh-action-pypi-publish@v1.12.2
125
- with:
126
- user: ${{ inputs.pypi-user }}
127
- password: ${{ inputs.pypi-token }}
128
-
+ env:
+ TWINE_USERNAME: ${{ inputs.pypi-user }}
+ TWINE_PASSWORD: ${{ inputs.pypi-token }}
+ shell: bash
+ run: |
129
+ python -m pip install twine
130
+ python -m twine upload dist/*
131
+
132
- name: Tag
133
134
shell: bash
0 commit comments