Skip to content

Commit bcd235c

Browse files
committed
Update pythonPublishTest.yml
1 parent 4124a12 commit bcd235c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pythonPublishTest.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,11 @@ jobs:
117117
cd build
118118
make python-wheel
119119
- name: Test import
120+
shell: pwsh
120121
run: |
121-
pip install build/python-build/dist/*.whl
122+
$wheel = Get-ChildItem build/python-build/dist/*.whl | Select-Object -First 1
123+
Write-Host "Installing wheel: $($wheel.FullName)"
124+
pip install "$($wheel.FullName)"
122125
python -c "import g2s; print('g2s import OK')"
123126
- name: Upload to TestPyPI
124127
env:

0 commit comments

Comments
 (0)