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 ce90316 commit 7f1e3bbCopy full SHA for 7f1e3bb
.github/workflows/python-publish.yml
@@ -6,7 +6,7 @@ name: Upload Python Package
6
on: [workflow_dispatch]
7
8
jobs:
9
- test_deploy:
+ deploy:
10
11
runs-on: ubuntu-latest
12
@@ -23,7 +23,7 @@ jobs:
23
- name: Build and publish
24
env:
25
TWINE_USERNAME: __token__
26
- TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
+ TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
27
run: |
28
python setup.py sdist bdist_wheel
29
- twine upload --repository testpypi dist/*
+ twine upload --repository pypi dist/*
0 commit comments