Skip to content

Commit

Permalink
Fix cmd -> bash error in publish-to-pypi.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cboulay authored Dec 12, 2024
1 parent d815f20 commit 60d2f6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 60d2f6c

Please sign in to comment.