We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b94e4d7 + 2b85352 commit 6402617Copy full SHA for 6402617
1 file changed
MediatR.Courier.Build/Nuget.cs
@@ -1,5 +1,6 @@
1
using Nuke.Common;
2
using Nuke.Common.Tools.DotNet;
3
+using Nuke.Common.Utilities.Collections;
4
using static Nuke.Common.Tools.DotNet.DotNetTasks;
5
using static System.IO.Directory;
6
@@ -14,7 +15,7 @@ sealed partial class Build
14
15
.Requires(() => NugetApiKey)
16
.Executes(() =>
17
EnumerateFiles(ArtifactsDirectory, "*.nupkg", SearchOption.AllDirectories)
- .SelectMany(x =>
18
+ .ForEach(x =>
19
DotNetNuGetPush(s => s
20
.SetTargetPath(x)
21
.SetSource(NugetApiUrl)
0 commit comments