Skip to content

Commit fbada5d

Browse files
authored
Fix Native Packages in the Release Pipeline (#466)
1 parent 6257505 commit fbada5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/nuke/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ async Task PushPackages()
376376
{
377377
const int rateLimit = 300;
378378
var allFiles = Directory.GetFiles(RootDirectory / "build" / "output_packages", "*.nupkg")
379-
.Where(x => Path.GetFileName(x).StartsWith("Silk.NET"))
379+
.Where(x => Path.GetFileName(x).StartsWith("Silk.NET") || Path.GetFileName(x).StartsWith("Ultz.Native"))
380380
.Select((x, i) => new {Index = i, Value = x})
381381
.GroupBy(x => x.Index / rateLimit)
382382
.Select(x => x.Select(v => v.Value).ToList())

0 commit comments

Comments
 (0)