Skip to content

Commit

Permalink
(cake-contribGH-62) Fix order of task execution
Browse files Browse the repository at this point in the history
Don't attempt to read issues until everything has been completed.
  • Loading branch information
gep13 authored and AdmiringWorm committed Jul 11, 2020
1 parent 61e558d commit b77edeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cake.Recipe/Content/build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -470,8 +470,8 @@ BuildParameters.Tasks.UploadArtifactsTask = Task("Upload-Artifacts")

BuildParameters.Tasks.ContinuousIntegrationTask = Task("ContinuousIntegration")
// Run issues task from Cake.Issues.Recipe by default.
.IsDependentOn("Issues")
.IsDependentOn("Upload-Artifacts")
.IsDependentOn("Issues")
.IsDependentOn("Publish-PreRelease-Packages")
.IsDependentOn("Publish-Release-Packages")
.IsDependentOn("Publish-GitHub-Release")
Expand Down

0 comments on commit b77edeb

Please sign in to comment.