Skip to content

Commit 343ed5a

Browse files
committed
Fix wheel upload from CI.
1 parent 42e24e6 commit 343ed5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@ jobs:
5252
run: make testslow
5353

5454
- name: Copy wheels in dist
55-
run: cp wheelhouse*/*.whl dist/
55+
run: cp -v wheelhouse*/*-m*linux*.whl dist/ # manylinux / musllinux
5656

5757
- name: Release
5858
uses: softprops/action-gh-release@v1
5959
if: startsWith(github.ref, 'refs/tags/')
6060
with:
61-
files: dist/*-m*linux*.whl # manylinux / musllinux
61+
files: dist/*.whl
6262

6363
- name: Archive Wheels
6464
uses: actions/upload-artifact@v2
6565
with:
6666
name: ${{ matrix.env.TARGET }}
67-
path: dist/*-m*linux*.whl # manylinux / musllinux
67+
path: dist/*.whl
6868
if-no-files-found: ignore
6969

7070
non-Linux:

0 commit comments

Comments
 (0)