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 691b237 commit ecc97e1Copy full SHA for ecc97e1
.github/workflows/python.yaml
@@ -53,9 +53,16 @@ jobs:
53
- name: build
54
run: |
55
python -m build --sdist --wheel --outdir dist/ .
56
+ - name: Upload
57
+ run: |
58
ls -la
59
ls -la dist
60
pwd
61
+ twine upload dist/* --non-interactive --skip-existing
62
+ env:
63
+ TWINE_USERNAME: __token__
64
+ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
65
+
66
- name: upload
67
uses: pypa/gh-action-pypi-publish@release/v1
68
with:
python/ci_requirements.txt
@@ -1,3 +1,4 @@
1
pytest
2
pytest-cov
3
build
4
+twine
0 commit comments