Skip to content

Commit

Permalink
Build: Fix NuGet packages not being pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
ghorsington committed Aug 15, 2022
1 parent b41697c commit 78b5b58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public override void Run(BuildContext ctx)
Source = ctx.NugetSource,
ApiKey = ctx.NugetApiKey
};
foreach (var pkg in ctx.GetFiles(ctx.OutputDirectory.Combine("*.nupkg").FullPath))
foreach (var pkg in ctx.GetFiles(nugetPath.Combine("*.nupkg").FullPath))
ctx.DotNetNuGetPush(pkg, settings);
}
}
Expand Down

0 comments on commit 78b5b58

Please sign in to comment.