File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -52,14 +52,16 @@ jobs:
52
52
- name : (Windows x64) Retarget wheel
53
53
if : matrix.config.name == 'windows-x64'
54
54
run : |
55
+ rm dist/*.tar.gz
55
56
uv run python -m ensurepip
56
57
uv run python -m pip install wheel
57
- for f in dist/pylsl*.whl; do uv run wheel tags --platform-tag win_amd64 "$f"; done
58
+ for f in dist/pylsl*.whl; do uv run wheel tags --platform-tag win_amd64 "$f" && rm "$f" ; done
58
59
- name : (Windows 32) Retarget wheel
59
60
if : matrix.config.name == 'windows-x86'
60
61
run : |
62
+ rm dist/*.tar.gz
61
63
uv run python -m ensurepip
62
64
uv run python -m pip install wheel
63
- for f in dist/pylsl*.whl; do uv run wheel tags --platform-tag win32 "$f"; done
65
+ for f in dist/pylsl*.whl; do uv run wheel tags --platform-tag win32 "$f" && rm "$f" ; done
64
66
- name : Publish package distributions to PyPI
65
67
run : uv publish
You can’t perform that action at this time.
0 commit comments