Skip to content

Commit 05a8855

Browse files
more logging
1 parent 5748cef commit 05a8855

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/scripts/windows/setup.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ if ($Process.ExitCode -eq 0) {
1111
exit 1
1212
}
1313

14+
$env:GITHUB_ENV
1415
Get-Content $env:GITHUB_ENV | foreach {
1516
$name, $value = $_.split('=')
17+
$old_value = Get-Content env:\$name
18+
Write-Host "Changing environment variable '$name' from '$old_value' to '$value'"
1619
Set-Content env:\$name $value
1720
}

0 commit comments

Comments
 (0)