diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index fac45e0..4b11c42 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -76,15 +76,13 @@ jobs: with: path: wheelhouse - - name: Compress wheels + - name: Flatten wheels run: | - find . - tar -czvf wheels-archive.tar.gz -C wheelhouse . - zip -r wheels-archive.zip wheelhouse + mv $(find wheelhouse -type f) wheelhouse + find wheelhouse -empty -type d -delete - uses: actions/upload-artifact@v4 with: - name: wheels-archive + name: wheelhouse path: | - wheels-archive.tar.gz - wheels-archive.zip + wheelhouse/*.whl