From 5440bbfaaab974ded862ef91dbe801fda7c7a722 Mon Sep 17 00:00:00 2001 From: starr-openai Date: Wed, 13 May 2026 16:06:56 -0700 Subject: [PATCH] Normalize MSVC PATH export --- .github/actions/setup-msvc-env/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/setup-msvc-env/action.yml b/.github/actions/setup-msvc-env/action.yml index 6db00f3c92..af6d20ae97 100644 --- a/.github/actions/setup-msvc-env/action.yml +++ b/.github/actions/setup-msvc-env/action.yml @@ -78,6 +78,9 @@ runs: $name = $matches[1] $value = $matches[2] if ($varsToExport -contains $name) { + if ($name -ieq "Path") { + $name = "PATH" + } "$name=$value" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append } }