Skip to content

Commit

Permalink
Switch off the PublishToNuget task
Browse files Browse the repository at this point in the history
  • Loading branch information
raman-m committed Nov 28, 2023
1 parent 22bc5b6 commit 349825f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -511,10 +511,11 @@ Task("PublishToNuget")
.IsDependentOn("DownloadGitHubReleaseArtifacts")
.Does(() =>
{
if (IsRunningOnCircleCI())
{
PublishPackages(packagesDir, artifactsFile, nugetFeedStableKey, nugetFeedStableUploadUrl, nugetFeedStableSymbolsUploadUrl);
}
Information("Skipping of publishing to NuGet...");
// if (IsRunningOnCircleCI())
// {
// PublishPackages(packagesDir, artifactsFile, nugetFeedStableKey, nugetFeedStableUploadUrl, nugetFeedStableSymbolsUploadUrl);
// }
});

RunTarget(target);
Expand Down

0 comments on commit 349825f

Please sign in to comment.