diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 483ba51..53d359f 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -54,12 +54,12 @@ jobs: run: | uv run python -m ensurepip uv run python -m pip install wheel - for %f in (dist/pylsl*.whl) do uv run wheel tags --platform-tag win_amd64 dist/%~nxf + for f in dist/pylsl*.whl; do uv run wheel tags --platform-tag win_amd64 "$f"; done - name: (Windows 32) Retarget wheel if: matrix.config.name == 'windows-x86' run: | uv run python -m ensurepip uv run python -m pip install wheel - for %f in (dist/pylsl*.whl) do uv run wheel tags --platform-tag win32 dist/%~nxf + for f in dist/pylsl*.whl; do uv run wheel tags --platform-tag win32 "$f"; done - name: Publish package distributions to PyPI run: uv publish