Skip to content

Commit a321ecb

Browse files
committed
update workflow!
1 parent e3fc81a commit a321ecb

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,8 @@ jobs:
409409
shell: pwsh
410410
run: |
411411
.\env\Scripts\Activate.ps1
412-
pip install --upgrade build wheel
412+
$pythonExe = Join-Path $env:VIRTUAL_ENV "Scripts\python.exe"
413+
& $pythonExe -m pip install --upgrade build wheel
413414
414415
$msys2Root = "${{ steps.msys2.outputs.msys2-location }}"
415416
if ("${{ matrix.arch }}" -eq "arm64") {
@@ -452,7 +453,7 @@ jobs:
452453
& $cxx --version
453454
& $cmake --version
454455
& $ninja --version
455-
python -m build --wheel -o dist
456+
& $pythonExe -m build --wheel -o dist
456457
457458
- name: Install wheel
458459
shell: pwsh

0 commit comments

Comments
 (0)