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 5748cef commit 05a8855Copy full SHA for 05a8855
.github/workflows/scripts/windows/setup.ps1
@@ -11,7 +11,10 @@ if ($Process.ExitCode -eq 0) {
11
exit 1
12
}
13
14
+$env:GITHUB_ENV
15
Get-Content $env:GITHUB_ENV | foreach {
16
$name, $value = $_.split('=')
17
+ $old_value = Get-Content env:\$name
18
+ Write-Host "Changing environment variable '$name' from '$old_value' to '$value'"
19
Set-Content env:\$name $value
20
0 commit comments