Skip to content

Commit

Permalink
chore(action): collates wheels into one downloadable for manual release
Browse files Browse the repository at this point in the history
  • Loading branch information
doublethefish committed Nov 28, 2024
1 parent 5fe058d commit 4a85240
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,27 @@ jobs:
with:
name: cibw-wheels-${{ matrix.only }}
path: ./wheelhouse/*.whl

collate-wheels:
name: Collate all wheels
needs: build_wheels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Download all wheel artifacts
uses: actions/download-artifact@v4
with:
path: wheelhouse

- name: Compress wheels
run: |
tar -czvf wheels-archive.tar.gz -C wheelhouse .
zip -r wheels-archive.zip wheelhouse
- uses: actions/upload-artifact@v4
with:
name: wheels-archive
path: |
wheels-archive.tar.gz
wheels-archive.zip

0 comments on commit 4a85240

Please sign in to comment.