diff --git a/build.cake b/build.cake index a55a2286..078e1074 100644 --- a/build.cake +++ b/build.cake @@ -225,6 +225,17 @@ Task("CreatePackages") Information("Created package " + codePackage); } + + if (IsRunningOnCircleCI()) + { + var path = packagesDir.ToString() + @"/**/*"; + + foreach (var file in GetFiles(path)) + { + // todo - upload to github releases? + // AppVeyor.UploadArtifact(file.FullPath); + } + } }); Task("EnsureStableReleaseRequirements")