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 33f040b commit 88cab6aCopy full SHA for 88cab6a
.github/workflows/build.yml
@@ -43,11 +43,13 @@ 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
47
$old = Get-Content $env:GITHUB_PATH
- (gi .\python*\tools\python.exe).Parent | Out-File $env:GITHUB_PATH -Encoding UTF8
48
+ Write-Host "Adding $($py.Parent) to GITHUB_PATH"
49
+ "$($py.Parent)" | Out-File $env:GITHUB_PATH -Encoding UTF8
50
$old | Out-File $env:GITHUB_PATH -Encoding UTF8 -Append
51
Write-Host "PATH entries:"
- Write-Host (gc $env:GITHUB_PATH)
52
+ Write-Host (Get-Content $env:GITHUB_PATH)
53
working-directory: ${{ runner.temp }}
54
55
- name: Check Python version
0 commit comments