mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-25 05:58:35 +01:00
fixed non-MLEM packages being deleted in build
This commit is contained in:
parent
d94e882c02
commit
a274517861
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ Task("Prepare").Does(() => {
|
|||
version += "-" + buildNum;
|
||||
}
|
||||
|
||||
DeleteFiles("**/*.nupkg");
|
||||
DeleteFiles("**/MLEM*.nupkg");
|
||||
});
|
||||
|
||||
Task("Build").IsDependentOn("Prepare").Does(() =>{
|
||||
|
@ -62,7 +62,7 @@ Task("Push").WithCriteria(branch == "main" || branch == "release").IsDependentOn
|
|||
};
|
||||
}
|
||||
settings.SkipDuplicate = true;
|
||||
NuGetPush(GetFiles("**/*.nupkg"), settings);
|
||||
NuGetPush(GetFiles("**/MLEM*.nupkg"), settings);
|
||||
});
|
||||
|
||||
Task("Document").Does(() => {
|
||||
|
|
Loading…
Reference in a new issue