Installer should be built too now.

This commit is contained in:
Leonardo Galli 2017-04-10 14:30:55 +02:00 committed by GitHub
parent c54f8806b3
commit 98c117a460
1 changed files with 7 additions and 0 deletions

View File

@ -264,6 +264,12 @@ Task("ArtifactsWindows").Does(() => {
CopyDirectory(outputFolder, artifactsFolderWindows + "/Radarr");
});
Task("ArtifactsWindowsInstaller").Does(() => {
InnoSetup("./setup/nzbdrone.iss", new InnoSetupSettings {
OutputDir = artifactsFolderWindows + "/Radarr"
})
});
Task("ArtifactsLinux").Does(() => {
CopyDirectory(outputFolderMono, artifactsFolderLinux + "/Radarr");
});
@ -293,6 +299,7 @@ Task("CompressArtifacts").Does(() => {
Task("Artifacts")
.IsDependentOn("CleanArtifacts")
.IsDependentOn("ArtifactsWindows")
.IsDependentOn("ArtifactsWindowsInstaller")
.IsDependentOn("ArtifactsLinux")
.IsDependentOn("ArtifactsOsx")
.IsDependentOn("ArtifactsOsxApp")