From 072685272dd6ef7566f6ab456f060c45f7502674 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Fri, 22 May 2020 21:05:12 +0200 Subject: [PATCH] skip duplicate nuget packages so that rebuilding doesn't fail in the future --- build.cake | 1 + 1 file changed, 1 insertion(+) diff --git a/build.cake b/build.cake index d1ecc13..b37dd24 100644 --- a/build.cake +++ b/build.cake @@ -50,6 +50,7 @@ Task("Push").WithCriteria(branch == "master" || branch == "release").IsDependent ApiKey = EnvironmentVariable("BAGET") }; } + settings.SkipDuplicate = true; NuGetPush(GetFiles("**/*.nupkg"), settings); });