Skip to content

Commit

Permalink
add step to merge artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz-Alexander-Kern committed Dec 11, 2024
1 parent d7c09d6 commit 1af433d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl
pattern: *.whl
merge-multiple: true
merge:
runs-on: ubuntu-latest
needs: build_wheels
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: all-wheels
pattern: wheels-*

0 comments on commit 1af433d

Please sign in to comment.