From ddc37c73304f9d85d0fc9fca7d4ce1890d18bf6a Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Tue, 18 Nov 2025 20:55:17 -0800 Subject: [PATCH] fix: disable artifact compression to prevent wheel corruption (#344) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Wheels are already ZIP files - double compression via GitHub Actions artifacts can cause "Mis-matched data size" errors on PyPI upload. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8b629a5..9a0b817 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -102,6 +102,7 @@ jobs: name: wheel-${{ matrix.os }} path: dist/*.whl if-no-files-found: error + compression-level: 0 publish: needs: [build-wheels]