We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a50a70 commit 289c837Copy full SHA for 289c837
1 file changed
.github/workflows/sdist.yml
@@ -39,7 +39,7 @@ jobs:
39
run: rm -rf setup.py ./snappy
40
41
- name: Install python-snappy sdist
42
- run: pip install dist/python_snappy*.tar.gz
+ run: pip install dist/python-snappy*.tar.gz
43
44
- name: Pytest
45
run: pytest --verbose test_snappy.py
@@ -48,12 +48,12 @@ jobs:
48
uses: actions/upload-artifact@v2
49
with:
50
name: python_snappy-${{ matrix.pep-425-tag }}-manylinux
51
- path: dist/python_snappy*.tar.gz
+ path: dist/python-snappy*.tar.gz
52
53
- name: Publish sdist to PyPI
54
if: startsWith(github.ref, 'refs/tags/0.')
55
env:
56
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
57
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
58
run: |
59
- twine upload dist/python_snappy*.tar.gz
+ twine upload dist/python-snappy*.tar.gz
0 commit comments