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 38dc3f4 commit 1da88b1Copy full SHA for 1da88b1
.github/workflows/releaser.yml
@@ -49,23 +49,11 @@ jobs:
49
steps:
50
- uses: actions/checkout@v3
51
52
- - name: "Get the version"
53
- id: get_version
54
- run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
55
-
56
- - name: "Download Release Asset - whl and tar.gz"
57
- uses: robinraju/[email protected]
58
- with:
59
- tag: ${{ steps.get_version.outputs.VERSION }}
60
- fileName: "*.whl"
61
- tarBall: true
62
- token: ${{ secrets.GITHUB_TOKEN }}
63
64
- name: "Upload to Public PyPi"
65
run: |
66
pip install twine
67
- twine upload --skip-existing *.whl
68
- twine upload --skip-existing *.tar.gz
+ python setup.py sdist
+ twine upload --skip-existing dist/*
69
env:
70
TWINE_USERNAME: __token__
71
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
0 commit comments