Skip to content

Commit 5eff56f

Browse files
authored
Fix Native Packages in the Release Pipeline (#466)
1 parent ce9730d commit 5eff56f

File tree

1 file changed

+1
-1
lines changed
  • src/infrastructure/Silk.NET.NUKE

1 file changed

+1
-1
lines changed

src/infrastructure/Silk.NET.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)