We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c9ded6 commit 2bcc049Copy full SHA for 2bcc049
1 file changed
.github/workflows/pythonpackage.yml
@@ -75,14 +75,15 @@ jobs:
75
76
- name: Delete non-wscodec binaries
77
run: |
78
- ls -1 | grep -v 'wheelhouse/wscodec.*'${{ matrix.python-version.bldstring }}'-manylinux1_x86_64' | sudo xargs rm -f
+ cd wheelhouse
79
+ ls -1 | grep -v 'wscodec.*'${{ matrix.python-version.bldstring }}'-manylinux1_x86_64' | sudo xargs rm -f
80
81
- name: Publish packages to PyPI if commit is Git tagged.
82
uses: pypa/gh-action-pypi-publish@master
83
with:
84
user: __token__
85
password: ${{ secrets.pypi_password }}
- packages_dir: wheelhouse/
86
+ packages_dir: .
87
88
release_source:
89
runs-on: ubuntu-latest
0 commit comments