Skip to content

Commit 0653842

Browse files
committed
Fix artifact corruption: disable compression for wheel uploads
1 parent a34010c commit 0653842

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.claude/settings.local.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(git tag:*)",
5+
"Bash(gh run list:*)",
6+
"Bash(gh run view:*)",
7+
"Bash(pip index versions:*)",
8+
"Bash(pip show:*)",
9+
"WebSearch",
10+
"WebFetch(domain:raw.githubusercontent.com)"
11+
]
12+
}
13+
}

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
with:
3838
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
3939
path: ./wheelhouse/*.whl
40+
compression-level: 0
4041

4142
build_sdist:
4243
name: Build source distribution
@@ -51,6 +52,7 @@ jobs:
5152
with:
5253
name: cibw-sdist
5354
path: dist/*.tar.gz
55+
compression-level: 0
5456

5557
upload_pypi:
5658
needs: [build_wheels, build_sdist]

0 commit comments

Comments
 (0)