Skip to content

Commit e0ad78f

Browse files
committed
Fixed path
1 parent 739ad35 commit e0ad78f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ jobs:
4444
run: |
4545
nuget install python -Version 3.14.0-b1 -x -o .
4646
dir -r
47-
$py = Get-ChildItem -Recurse .\*\tools\python.exe | select -Last 1
47+
$py = Get-Item python\tools\python.exe
4848
$old = Get-Content $env:GITHUB_PATH
49-
Write-Host "Adding $($py.Parent) to GITHUB_PATH"
49+
Write-Host "Adding $($py.Parent) to GITHUB_PATH (${env:GITHUB_PATH})"
5050
"$($py.Parent)" | Out-File $env:GITHUB_PATH -Encoding UTF8
5151
$old | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append
5252
Write-Host "PATH entries:"

0 commit comments

Comments
 (0)