Show More Step Information in composite Actions (#1279)

This commit is contained in:
Thomas Boop
2021-09-01 16:04:27 -04:00
committed by GitHub
parent c5ce52641c
commit 9a829995e0
4 changed files with 17 additions and 29 deletions

View File

@@ -980,18 +980,6 @@ namespace GitHub.Runner.Worker
context.Write(null, message);
}
public static void WriteDetails(this IExecutionContext context, string message)
{
if (context.IsEmbedded)
{
context.Debug(message);
}
else
{
context.Output(message);
}
}
// Do not add a format string overload. See comment on ExecutionContext.Write().
public static void Command(this IExecutionContext context, string message)
{