Skip to content

Commit

Permalink
Fix file pattern used to collect Linux wheels.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Nov 2, 2022
1 parent a8bcdee commit 5bf8b0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*/*-m*linux*.whl # manylinux / musllinux
files: dist/*-m*linux*.whl # manylinux / musllinux

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

other:
Expand Down

0 comments on commit 5bf8b0e

Please sign in to comment.