Skip to content

Commit

Permalink
Merge branch 'release/7.0.0-rc1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaben committed Jun 6, 2024
2 parents 1cb164c + ee2795f commit 536a994
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ Task("PackageUI32")

Task("DeployReleases")
.WithCriteria(AppVeyor.IsRunningOnAppVeyor && isMasterBranch && hasGithubToken)
.IsDependentOn("UploadArtifacts")
.Does(() =>
{
Information($"Uploading Papercut SMTP 64-bit Release {GitVersionOutput.BuildServer}");
Expand Down Expand Up @@ -277,7 +276,6 @@ Task("BuildAndPackServiceWin32")
.Does(() =>
{
CleanDirectory(publishDirectory);
CleanDirectory(releasesDirectory);
var runtime = "win-x86";
Expand All @@ -302,7 +300,7 @@ Task("BuildAndPackServiceWin32")

Task("UploadArtifacts")
.WithCriteria(AppVeyor.IsRunningOnAppVeyor)
.IsDependentOn("PackageUI32")
.IsDependentOn("BuildAndPackServiceWin32")
.Does(() =>
{
foreach (var file in GetFiles(releasesDirectory.ToString() + "/**/*.zip"))
Expand All @@ -323,8 +321,8 @@ Task("All")
.IsDependentOn("BuildUI32").IsDependentOn("PackageUI32")
.IsDependentOn("BuildUI64").IsDependentOn("PackageUI64")
.IsDependentOn("DeployReleases")
.IsDependentOn("BuildAndPackServiceWin32")
.IsDependentOn("BuildAndPackServiceWin64")
.IsDependentOn("BuildAndPackServiceWin32")
.IsDependentOn("UploadArtifacts")
.OnError(exception => Error(exception));

Expand Down

0 comments on commit 536a994

Please sign in to comment.