Skip to content

Commit 28e5b5f

Browse files
committed
Enable private source
1 parent 3b5e1f4 commit 28e5b5f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

build/Build.Publish.Nuget.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ partial class Build
1515
.Requires(() => NugetPrivateApiKey)
1616
.Executes(() =>
1717
{
18-
// foreach (var package in PrivateArtifactsDirectory.GlobFiles("*.nupkg"))
19-
// {
20-
// DotNetNuGetPush(settings => settings
21-
// .SetTargetPath(package)
22-
// .SetSource(NugetPrivateSource)
23-
// .SetApiKey(NugetPrivateApiKey));
24-
// }
18+
foreach (var package in PrivateArtifactsDirectory.GlobFiles("*.nupkg"))
19+
{
20+
DotNetNuGetPush(settings => settings
21+
.SetTargetPath(package)
22+
.SetSource(NugetPrivateSource)
23+
.SetApiKey(NugetPrivateApiKey));
24+
}
2525

2626
foreach (var package in PublicArtifactsDirectory.GlobFiles("*.nupkg"))
2727
{

0 commit comments

Comments
 (0)