1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-18 15:18:45 +02:00

skip duplicate nuget packages so that rebuilding doesn't fail in the future

This commit is contained in:
Ellpeck 2020-05-22 21:05:12 +02:00
parent 98b3e1062a
commit 072685272d

View file

@ -50,6 +50,7 @@ Task("Push").WithCriteria(branch == "master" || branch == "release").IsDependent
ApiKey = EnvironmentVariable("BAGET")
};
}
settings.SkipDuplicate = true;
NuGetPush(GetFiles("**/*.nupkg"), settings);
});