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 88cab6a commit 13ab8b6Copy full SHA for 13ab8b6
.github/workflows/build.yml
@@ -43,7 +43,7 @@ jobs:
43
- name: Set up Python 3.14.0b1
44
run: |
45
nuget install python -Version 3.14.0-b1 -x -o .
46
- $py = Get-Item .\python*\tools\python.exe
+ $py = Get-ChildItem -Recurse .\*\tools\python.exe | select -Last 1
47
$old = Get-Content $env:GITHUB_PATH
48
Write-Host "Adding $($py.Parent) to GITHUB_PATH"
49
"$($py.Parent)" | Out-File $env:GITHUB_PATH -Encoding UTF8
0 commit comments