From bf0bcb8f1a53f040c6bd55cb99c18cb2c4c12b66 Mon Sep 17 00:00:00 2001 From: Frank Harrison Date: Thu, 28 Nov 2024 18:10:02 +0000 Subject: [PATCH] chore)actions): flattens wheel output into one dir structure --- .github/workflows/wheels.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: