mirror of
https://github.com/actions/runner.git
synced 2025-12-15 06:26:46 +00:00
Initial Start for FileTable stuff
This commit is contained in:
@@ -53,7 +53,7 @@ namespace GitHub.Runner.Worker.Handlers
|
||||
// Add the composite action environment variables to each step.
|
||||
// If the key already exists, we override it since the composite action env variables will have higher precedence
|
||||
// Note that for each composite action step, it's environment variables will be set in the StepRunner automatically
|
||||
var compositeEnvData = manifestManager.EvaluateCompositeActionEnvironment(ExecutionContext, Data.Environment, extraExpressionValues);
|
||||
var compositeEnvData = manifestManager.EvaluateCompositeActionEnvironment(ExecutionContext, Data.Environment, extraExpressionValues, Data.FileID);
|
||||
var envData = new Dictionary<string, string>();
|
||||
|
||||
// Copy over parent environment
|
||||
@@ -106,7 +106,7 @@ namespace GitHub.Runner.Worker.Handlers
|
||||
actionRunner.Stage = stage;
|
||||
actionRunner.Condition = aStep.Condition;
|
||||
actionRunner.DisplayName = aStep.DisplayName;
|
||||
|
||||
|
||||
ExecutionContext.RegisterNestedStep(actionRunner, inputsData, location, envData);
|
||||
location++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user