Skip to content

Commit 560314e

Browse files
committed
Fixed path
1 parent e0ad78f commit 560314e

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,9 @@ jobs:
4343
- name: Set up Python 3.14.0b1
4444
run: |
4545
nuget install python -Version 3.14.0-b1 -x -o .
46-
dir -r
47-
$py = Get-Item python\tools\python.exe
48-
$old = Get-Content $env:GITHUB_PATH
49-
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
46+
$py = Get-Item python\tools
47+
Write-Host "Adding $py to GITHUB_PATH (${env:GITHUB_PATH})"
48+
$py" | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append
5249
Write-Host "PATH entries:"
5350
Write-Host (Get-Content $env:GITHUB_PATH)
5451
working-directory: ${{ runner.temp }}

0 commit comments

Comments
 (0)