We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccffed4 commit 5857a7dCopy full SHA for 5857a7d
ruptura.cake
@@ -148,13 +148,16 @@ Task("upload-core-nuget")
148
.WithCriteria(configuration == "Release")
149
.IsDependentOn("pack-core")
150
.Does(() =>
151
- DotNetNuGetPush(
152
- nugetGlob.Pattern,
153
- new()
154
- {
155
- Source = "https://api.nuget.org/v3/index.json",
156
- ApiKey = nugetToken,
157
- SkipDuplicate = true,
158
- }));
+ {
+ foreach (var pkg in GetFiles(nugetGlob))
+ DotNetNuGetPush(
+ pkg,
+ new()
+ Source = "https://api.nuget.org/v3/index.json",
+ ApiKey = nugetToken,
159
+ SkipDuplicate = true,
160
+ });
161
162
163
RunTarget(target);
0 commit comments