From 98c117a460dc56b71d9c44ee69e5e0e25a340acb Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Mon, 10 Apr 2017 14:30:55 +0200 Subject: [PATCH] Installer should be built too now. --- build-appveyor.cake | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build-appveyor.cake b/build-appveyor.cake index 12cf0fa0f..63e6f1e11 100644 --- a/build-appveyor.cake +++ b/build-appveyor.cake @@ -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")