We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba68095 commit f3de234Copy full SHA for f3de234
.github/workflows/python-ci.yml
@@ -33,7 +33,9 @@ jobs:
33
shell: pwsh
34
run: |
35
python -m pip install uv
36
- echo "$env:USERPROFILE/.local/bin" | Out-File -FilePath $env:GITHUB_PATH -Append
+ $pythonPath = (Get-Command python).Path
37
+ $scriptsPath = Join-Path (Split-Path $pythonPath) "Scripts"
38
+ echo $scriptsPath | Out-File -FilePath $env:GITHUB_PATH -Append
39
- name: selfie-lib - install dependencies
40
shell: ${{ runner.os == 'Windows' && 'C:\\Program Files\\Git\\bin\\bash.exe -e' || 'bash' }}
41
0 commit comments