We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e283e0 commit 3297fdaCopy full SHA for 3297fda
1 file changed
.github/workflows/CI.yml
@@ -35,6 +35,11 @@ jobs:
35
uses: PyO3/maturin-action@v1
36
with:
37
args: --release --out dist --interpreter python
38
+ - name: Add unique suffix to wheel filenames
39
+ run: |
40
+ for file in dist/*.whl; do
41
+ mv "$file" "${file%.whl}-${{ matrix.platform.runner }}.whl"
42
+ done
43
- name: Validate wheels after building
44
run: |
45
for file in dist/*.whl; do
@@ -170,6 +175,13 @@ jobs:
170
175
ls -lh dist/**/*.whl
171
176
file dist/**/*.whl
172
177
178
+ - name: List and verify all artifacts
179
180
+ echo "Distributions in dist/"
181
+ find dist -type f
182
+ echo "Inspecting file types:"
183
+ file dist/* 2>/dev/null || true
184
+
173
185
- name: Validate wheels
174
186
187
for file in dist/**/*.whl; do
0 commit comments