Skip to content

Commit a81e471

Browse files
committed
Added a flatten wheels step
1 parent 3629935 commit a81e471

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
with:
2222
path: dist
2323

24+
- name: Flatten wheels
25+
run: |
26+
find dist -type f -name "*.whl" -exec mv {} dist/ \;
27+
find dist -type d -empty -delete
28+
2429
- name: Get Pyxel version
2530
run: |
2631
PYXEL_VERSION=$(echo $GITHUB_REF | sed 's/refs\/tags\/v//')

0 commit comments

Comments
 (0)