We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bcc049 commit 0d01b71Copy full SHA for 0d01b71
1 file changed
.github/workflows/pythonpackage.yml
@@ -45,7 +45,6 @@ jobs:
45
release:
46
runs-on: ubuntu-latest
47
needs: build
48
- if: startsWith(github.event.ref, 'refs/tags')
49
strategy:
50
max-parallel: 4
51
matrix:
@@ -77,18 +76,19 @@ jobs:
77
76
run: |
78
cd wheelhouse
79
ls -1 | grep -v 'wscodec.*'${{ matrix.python-version.bldstring }}'-manylinux1_x86_64' | sudo xargs rm -f
+ cd ..
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 }}
86
- packages_dir: .
+ packages_dir: wheelhouse/
87
88
release_source:
89
90
91
-
+ if: startsWith(github.event.ref, 'refs/tags')
92
steps:
93
- uses: actions/checkout@v1
94
- name: Set up Python 3.8
0 commit comments