mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Installer should be built too now.
This commit is contained in:
parent
c54f8806b3
commit
98c117a460
1 changed files with 7 additions and 0 deletions
|
@ -264,6 +264,12 @@ Task("ArtifactsWindows").Does(() => {
|
||||||
CopyDirectory(outputFolder, artifactsFolderWindows + "/Radarr");
|
CopyDirectory(outputFolder, artifactsFolderWindows + "/Radarr");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Task("ArtifactsWindowsInstaller").Does(() => {
|
||||||
|
InnoSetup("./setup/nzbdrone.iss", new InnoSetupSettings {
|
||||||
|
OutputDir = artifactsFolderWindows + "/Radarr"
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
Task("ArtifactsLinux").Does(() => {
|
Task("ArtifactsLinux").Does(() => {
|
||||||
CopyDirectory(outputFolderMono, artifactsFolderLinux + "/Radarr");
|
CopyDirectory(outputFolderMono, artifactsFolderLinux + "/Radarr");
|
||||||
});
|
});
|
||||||
|
@ -293,6 +299,7 @@ Task("CompressArtifacts").Does(() => {
|
||||||
Task("Artifacts")
|
Task("Artifacts")
|
||||||
.IsDependentOn("CleanArtifacts")
|
.IsDependentOn("CleanArtifacts")
|
||||||
.IsDependentOn("ArtifactsWindows")
|
.IsDependentOn("ArtifactsWindows")
|
||||||
|
.IsDependentOn("ArtifactsWindowsInstaller")
|
||||||
.IsDependentOn("ArtifactsLinux")
|
.IsDependentOn("ArtifactsLinux")
|
||||||
.IsDependentOn("ArtifactsOsx")
|
.IsDependentOn("ArtifactsOsx")
|
||||||
.IsDependentOn("ArtifactsOsxApp")
|
.IsDependentOn("ArtifactsOsxApp")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue