Skip to content

Commit 289c837

Browse files
committed
Fix typo in source distribution name
1 parent 3a50a70 commit 289c837

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/sdist.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: rm -rf setup.py ./snappy
4040

4141
- name: Install python-snappy sdist
42-
run: pip install dist/python_snappy*.tar.gz
42+
run: pip install dist/python-snappy*.tar.gz
4343

4444
- name: Pytest
4545
run: pytest --verbose test_snappy.py
@@ -48,12 +48,12 @@ jobs:
4848
uses: actions/upload-artifact@v2
4949
with:
5050
name: python_snappy-${{ matrix.pep-425-tag }}-manylinux
51-
path: dist/python_snappy*.tar.gz
51+
path: dist/python-snappy*.tar.gz
5252

5353
- name: Publish sdist to PyPI
5454
if: startsWith(github.ref, 'refs/tags/0.')
5555
env:
5656
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
5757
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
5858
run: |
59-
twine upload dist/python_snappy*.tar.gz
59+
twine upload dist/python-snappy*.tar.gz

0 commit comments

Comments
 (0)