Skip to content

Commit b3fb3cc

Browse files
authored
fix: Skip package and continue with the next package if the same version already exists
1 parent 0d40ab0 commit b3fb3cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.cake

+2-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ Task("Publish-NuGet-Packages")
164164
DotNetNuGetPush(package.FullPath, new DotNetNuGetPushSettings
165165
{
166166
Source = param.NuGetCredentials.Source,
167-
ApiKey = param.NuGetCredentials.ApiKey
167+
ApiKey = param.NuGetCredentials.ApiKey,
168+
SkipDuplicate = true
168169
});
169170
}
170171
});

0 commit comments

Comments
 (0)