diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index fac45e0..7bed525 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -78,9 +78,9 @@ jobs: - name: Compress wheels run: | - find . - tar -czvf wheels-archive.tar.gz -C wheelhouse . - zip -r wheels-archive.zip wheelhouse + mkdir -p wheelhouse_flat + mv $(find wheelhouse -type f) wheelhouse_flat + zip -r wheels-archive.zip wheelhouse_flat - uses: actions/upload-artifact@v4 with: