Skip to content

Commit 78b5b58

Browse files
committed
Build: Fix NuGet packages not being pushed
1 parent b41697c commit 78b5b58

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public override void Run(BuildContext ctx)
302302
Source = ctx.NugetSource,
303303
ApiKey = ctx.NugetApiKey
304304
};
305-
foreach (var pkg in ctx.GetFiles(ctx.OutputDirectory.Combine("*.nupkg").FullPath))
305+
foreach (var pkg in ctx.GetFiles(nugetPath.Combine("*.nupkg").FullPath))
306306
ctx.DotNetNuGetPush(pkg, settings);
307307
}
308308
}

0 commit comments

Comments
 (0)