Skip to content

Commit

Permalink
(build) Don't fail build if push to Chocolatey fails
Browse files Browse the repository at this point in the history
  • Loading branch information
gep13 committed Dec 29, 2018
1 parent f9f1a1e commit 95a1bf5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,10 @@ Task("Publish-Chocolatey-Package")
.OnError(exception =>
{
Information("Publish-Chocolatey-Package Task failed, but continuing with next Task...");
publishingError = true;

// TODO: Don't fail build if failure to push package to Chocolatey, as this is known to cause
// some errors at the minute. An error can be returned, but the package is pushed correctly
// publishingError = true;
});

Task("Publish-Extension")
Expand Down

0 comments on commit 95a1bf5

Please sign in to comment.