Skip to content

Commit 5bf8b0e

Browse files
committed
Fix file pattern used to collect Linux wheels.
1 parent a8bcdee commit 5bf8b0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ jobs:
7777
uses: softprops/action-gh-release@v1
7878
if: startsWith(github.ref, 'refs/tags/')
7979
with:
80-
files: dist/*/*-m*linux*.whl # manylinux / musllinux
80+
files: dist/*-m*linux*.whl # manylinux / musllinux
8181

8282
- name: Archive Wheels
8383
uses: actions/upload-artifact@v3
8484
with:
8585
name: ${{ matrix.image }}
86-
path: dist/*/*-m*linux*.whl # manylinux / musllinux
86+
path: dist/*-m*linux*.whl # manylinux / musllinux
8787
if-no-files-found: ignore
8888

8989
other:

0 commit comments

Comments
 (0)