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 739ad35 commit e0ad78fCopy full SHA for e0ad78f
.github/workflows/build.yml
@@ -44,9 +44,9 @@ jobs:
44
run: |
45
nuget install python -Version 3.14.0-b1 -x -o .
46
dir -r
47
- $py = Get-ChildItem -Recurse .\*\tools\python.exe | select -Last 1
+ $py = Get-Item python\tools\python.exe
48
$old = Get-Content $env:GITHUB_PATH
49
- Write-Host "Adding $($py.Parent) to GITHUB_PATH"
+ Write-Host "Adding $($py.Parent) to GITHUB_PATH (${env:GITHUB_PATH})"
50
"$($py.Parent)" | Out-File $env:GITHUB_PATH -Encoding UTF8
51
$old | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append
52
Write-Host "PATH entries:"
0 commit comments