Skip to content

Commit

Permalink
Removed creation of the zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
droyad committed Sep 9, 2016
1 parent 8988049 commit 625d5a6
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ Task("__Default")
.IsDependentOn("__Build")
.IsDependentOn("__Test")
.IsDependentOn("__Publish")
.IsDependentOn("__Zip")
.IsDependentOn("__PackNuget");

Task("__Clean")
Expand Down Expand Up @@ -166,14 +165,6 @@ Task("__MergeOctoExe")
CopyFileToDirectory(Path.Combine(octoPublishFolder, "Octo.exe.config"), octoMergedFolder);
});

Task("__Zip")
.IsDependentOn("__Publish")
.IsDependentOn("__MergeOctoExe")
.Does(() => {
var outFile = Path.Combine(artifactsDir, $"OctopusTools.{nugetVersion}.zip");
Zip(octoMergedFolder, outFile);
});

Task("__PackNuget")
.IsDependentOn("__Publish")
.IsDependentOn("__PackOctopusToolsNuget")
Expand All @@ -188,6 +179,7 @@ Task("__PackClientNuget")
});

Task("__PackOctopusToolsNuget")
.IsDependentOn("__MergeOctoExe")
.Does(() => {
var nugetPackDir = Path.Combine(publishDir, "nuget");
var nuspecFile = "OctopusTools.nuspec";
Expand Down

0 comments on commit 625d5a6

Please sign in to comment.