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 42e24e6 commit 343ed5aCopy full SHA for 343ed5a
.github/workflows/ci.yml
@@ -52,19 +52,19 @@ jobs:
52
run: make testslow
53
54
- name: Copy wheels in dist
55
- run: cp wheelhouse*/*.whl dist/
+ run: cp -v wheelhouse*/*-m*linux*.whl dist/ # manylinux / musllinux
56
57
- name: Release
58
uses: softprops/action-gh-release@v1
59
if: startsWith(github.ref, 'refs/tags/')
60
with:
61
- files: dist/*-m*linux*.whl # manylinux / musllinux
+ files: dist/*.whl
62
63
- name: Archive Wheels
64
uses: actions/upload-artifact@v2
65
66
name: ${{ matrix.env.TARGET }}
67
- path: dist/*-m*linux*.whl # manylinux / musllinux
+ path: dist/*.whl
68
if-no-files-found: ignore
69
70
non-Linux:
0 commit comments