Skip to content

Commit 30e11c8

Browse files
committed
adding packaging
1 parent fef21c8 commit 30e11c8

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

build.cake

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,17 @@ Task("Test")
6060
});
6161
});
6262

63+
Task("Package")
64+
.IsDependentOn("Test")
65+
.Does(() => {
66+
if (AppVeyor.IsRunningOnAppVeyor)
67+
{
68+
foreach (var file in GetFiles(outputDir + "**/*"))
69+
AppVeyor.UploadArtifact(file.FullPath);
70+
}
71+
});
72+
6373
Task("Default")
64-
.IsDependentOn("Test");
74+
.IsDependentOn("Package");
6575

6676
RunTarget(target);

0 commit comments

Comments
 (0)