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 4e688bc commit 7ab71a3Copy full SHA for 7ab71a3
.github/workflows/main.yml
@@ -51,8 +51,8 @@ jobs:
51
shell: pwsh
52
run: |
53
$d = (.\cpython\PCbuild\build.bat -V) | %{ if($_ -match '\s+(\w+):\s*(.+)\s*$') { @{$Matches[1] = $Matches[2];} }};
54
- echo ("::set-output name=python_version::" + $d.PythonVersion)
55
- echo ("::set-output name=git_version::" + (git -C cpython describe --tags --long))
+ echo ("python_version=" + $d.PythonVersion) >> $env:GITHUB_OUTPUT
+ echo ("git_version=" + (git -C cpython describe --tags --long)) >> $env:GITHUB_OUTPUT
56
57
# - name: Get external libs (sources)
58
# shell: pwsh
0 commit comments