fix: GITHUB_ENV in composite (#1794)

* fix: GITHUB_ENV in composite

* fix L0 Test
This commit is contained in:
ChristopherHX
2022-06-29 02:50:50 +02:00
committed by GitHub
parent efdda93aeb
commit 7e74f8c9d5
4 changed files with 13 additions and 1 deletions

View File

@@ -112,6 +112,7 @@ namespace GitHub.Runner.Worker
foreach (var env in actionEnvironment)
{
envContext[env.Key] = new StringContextData(env.Value ?? string.Empty);
step.ExecutionContext.StepEnvironmentOverrides.Add(env.Key);
}
}
catch (Exception ex)