We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfea29c commit 8adc658Copy full SHA for 8adc658
.github/workflows/cd.yml
@@ -59,11 +59,18 @@ jobs:
59
name_is_regexp: true
60
path: dist
61
62
- - name: Move all downloaded wheels to top-level dist
+ - name: Consolidate artifacts and clean extras
63
+ shell: bash
64
run: |
- # Move any wheels from nested cibw dirs into dist/
65
+ # Move wheels from nested cibw dirs into top-level dist/
66
find dist -mindepth 2 -type f -name '*.whl' -exec mv -n {} dist/ \;
67
68
+ # Remove any .zip files under dist/ (we don't publish zips to PyPI)
69
+ find dist -type f -iname '*.zip' -print -delete
70
+
71
+ # Remove intermediate cibw directories
72
+ find dist -mindepth 1 -maxdepth 1 -type d -name 'cibw-wheels-*' -exec rm -rf {} +
73
74
- name: List downloaded wheels
75
run: ls -1 dist/
76
0 commit comments