Skip to content

Commit

Permalink
Add merge-artifacts step
Browse files Browse the repository at this point in the history
  • Loading branch information
tmontaigu committed Oct 10, 2024
1 parent 624eddd commit 5a99eca
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,13 @@ jobs:
name: sdist
path: ./dist/*.tar.gz

merge-artifacts:
runs-on: ubuntu-latest
needs: [linux-build, windows-build, macos-build-aarch64, macos-build-x86_64]
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: all-wheels
pattern: binary-*
delete-merged: true

0 comments on commit 5a99eca

Please sign in to comment.