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 6257505 commit fbada5dCopy full SHA for fbada5d
build/nuke/Build.cs
@@ -376,7 +376,7 @@ async Task PushPackages()
376
{
377
const int rateLimit = 300;
378
var allFiles = Directory.GetFiles(RootDirectory / "build" / "output_packages", "*.nupkg")
379
- .Where(x => Path.GetFileName(x).StartsWith("Silk.NET"))
+ .Where(x => Path.GetFileName(x).StartsWith("Silk.NET") || Path.GetFileName(x).StartsWith("Ultz.Native"))
380
.Select((x, i) => new {Index = i, Value = x})
381
.GroupBy(x => x.Index / rateLimit)
382
.Select(x => x.Select(v => v.Value).ToList())
0 commit comments