From 2abec7d26799e45f711613f6d6f40c654d28ddd5 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index b62e099..48d2713 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -78,7 +78,8 @@ jobs: - name: Compress wheels run: | - tar -czvf wheels-archive.tar.gz -C wheelhouse . + mv $(find . -type f) wheelhouse + find . -type d -empty -delete zip -r wheels-archive.zip wheelhouse - uses: actions/upload-artifact@v4