Skip to content

Commit

Permalink
Fix wheel upload from CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Jan 7, 2022
1 parent 42e24e6 commit 343ed5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,19 @@ jobs:
run: make testslow

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

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

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

non-Linux:
Expand Down

0 comments on commit 343ed5a

Please sign in to comment.