Skip to content

Commit

Permalink
fix: Skip package and continue with the next package if the same vers…
Browse files Browse the repository at this point in the history
…ion already exists
  • Loading branch information
HofmeisterAn committed Mar 8, 2023
1 parent 0d40ab0 commit b3fb3cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ Task("Publish-NuGet-Packages")
DotNetNuGetPush(package.FullPath, new DotNetNuGetPushSettings
{
Source = param.NuGetCredentials.Source,
ApiKey = param.NuGetCredentials.ApiKey
ApiKey = param.NuGetCredentials.ApiKey,
SkipDuplicate = true
});
}
});
Expand Down

0 comments on commit b3fb3cc

Please sign in to comment.