This commit is contained in:
Ethan Chiu
2020-07-07 13:02:07 -04:00
parent 20bc6a9a5c
commit 14a2cbd473
2 changed files with 1 additions and 3 deletions

View File

@@ -314,8 +314,6 @@ namespace GitHub.Runner.Worker
TemplateToken inputsToken,
Int32 fileID)
{
Trace.Info($"COMPOSITE ACTIONS FILEID: {fileID}");
var runsMapping = inputsToken.AssertMapping("runs");
var usingToken = default(StringToken);
var imageToken = default(StringToken);

View File

@@ -176,7 +176,7 @@ namespace GitHub.DistributedTask.Pipelines.ObjectTemplating
try
{
token = TemplateEvaluator.Evaluate(context, PipelineTemplateConstants.StepsInTemplate, token, 0, null, omitHeader: false);
token = TemplateEvaluator.Evaluate(context, PipelineTemplateConstants.StepsInTemplate, token, 0, null, omitHeader: true);
context.Errors.Check();
result = PipelineTemplateConverter.ConvertToSteps(context, token);
}