Skip to content

Commit 4594bda

Browse files
committed
Add DumpSettings to CI
1 parent 47af263 commit 4594bda

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

recipe/publishing.cake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ public static class PackageReleaseManager
2222
bool publishToMyGet = BuildSettings.ShouldPublishToMyGet;
2323
bool publishToNuGet = BuildSettings.ShouldPublishToNuGet && packageType == PackageType.NuGet;
2424
bool publishToChocolatey = BuildSettings.ShouldPublishToChocolatey && packageType == PackageType.Chocolatey;
25-
// TODO: If we decide to keep the zip build, add publishToZip here and handle it below
2625

2726
// If --nopush was specified, give a detailed message showing what would have been pushed
2827
if (CommandLineOptions.NoPush)

recipe/task-definitions.cake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ BuildTasks.CreateProductionReleaseTask = Task("CreateProductionRelease")
121121

122122
BuildTasks.ContinuousIntegrationTask = Task("ContinuousIntegration")
123123
.Description("Perform continuous integration run")
124+
.IsDependentOn("DumpSettings")
124125
.IsDependentOn("Build")
125126
.IsDependentOn("Test")
126127
.IsDependentOn("Package")

0 commit comments

Comments
 (0)