Skip to content

Commit

Permalink
Do not fail on known missing build artifacta
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Ginnivan committed Aug 21, 2018
1 parent bf0d89d commit 08f23f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy.cake
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ Task("DownloadGitHubReleaseArtifacts")
if (!artifactLookup.ContainsKey("NuGetExeDotNetCoreBuild")) { throw new Exception("NuGetExeDotNetCoreBuild artifact missing"); }
if (!artifactLookup.ContainsKey("NuGetTaskBuild")) { throw new Exception("NuGetTaskBuild artifact missing"); }
if (!artifactLookup.ContainsKey("NuGetExeBuild")) { throw new Exception("NuGetExeBuild artifact missing"); }
if (!artifactLookup.ContainsKey("GemBuild")) { throw new Exception("GemBuild artifact missing"); }
if (!artifactLookup.ContainsKey("GitVersionTfsTaskBuild")) { throw new Exception("GitVersionTfsTaskBuild artifact missing"); }
// if (!artifactLookup.ContainsKey("GemBuild")) { throw new Exception("GemBuild artifact missing"); }
// if (!artifactLookup.ContainsKey("GitVersionTfsTaskBuild")) { throw new Exception("GitVersionTfsTaskBuild artifact missing"); }
if (!artifactLookup.ContainsKey("zip")) { throw new Exception("zip artifact missing"); }
if (!artifactLookup.ContainsKey("zip-dotnetcore")) { throw new Exception("zip-dotnetcore artifact missing"); }
});
Expand Down

0 comments on commit 08f23f6

Please sign in to comment.