Skip to content

Commit

Permalink
Improve logging with group on GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Feb 26, 2022
1 parent ca01982 commit 7173fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dotnet-releaser/Logging/ISimpleLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ public void LogStartGroup(string name)

public void LogEndGroup()
{
AnsiConsole.WriteLine();
if (_runningFromGitHubAction)
{
AnsiConsole.WriteLine("::endgroup::");
AnsiConsole.WriteLine();
}
Console.Out.Flush();
}
Expand Down

0 comments on commit 7173fb5

Please sign in to comment.