need to push packages to github here

This commit is contained in:
TomPallister 2020-01-14 10:41:24 +00:00
parent 826fae3f27
commit 37ceea019c

View File

@ -225,6 +225,17 @@ Task("CreatePackages")
Information("Created package " + codePackage); 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") Task("EnsureStableReleaseRequirements")