Skip to content

Commit

Permalink
fix codecov publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Feb 22, 2023
1 parent 9ab0fc5 commit 5f40019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build/Tasks/Test/PublishCoverage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public override void Run(BuildContext context)
{
var coverageFiles = context
.GetFiles($"{Paths.TestOutput}/*.coverage.*.xml")
.Select(file => context.MakeRelative(file).ToString()).ToArray();
.Select(file => context.MakeRelative(file).ToString()).ToArray();

var token = context.Credentials?.CodeCov?.Token;
if (string.IsNullOrEmpty(token))
Expand Down

0 comments on commit 5f40019

Please sign in to comment.