Skip to content

Commit

Permalink
Changed PATH variable to use pwsh in windows worflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
Demmenie committed Jul 4, 2024
1 parent c1dd3c8 commit fbc4951
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ jobs:
python assets/install_ffmpeg.py
- name: Add videohash to path
run: |
$env:Path += ";C:\FFMPEG\bin"
$env:Path += ";D:\a\videohash2\videohash2"
echo $env:Path
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\FFMPEG\bin", "Machine")
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";D:\a\videohash2\videohash2", "Machine")
$env:PATH += ";D:\a\videohash2\videohash2";
echo $env:PATH
- name: Build test the package
run: |
python setup.py sdist bdist_wheel
Expand Down

0 comments on commit fbc4951

Please sign in to comment.