@@ -443,20 +443,23 @@ async Task PushPackages()
443
443
DotNetToolInstall ( s => s . SetToolInstallationPath ( basePath / "tool" ) . SetPackageName ( "SignClient" ) ) ;
444
444
}
445
445
446
- StartProcess
447
- (
448
- execPath ,
449
- "sign " +
450
- $ "--baseDirectory { PackageDirectory } " +
451
- "--input \" **/*.nupkg\" " +
452
- $ "--config \" { basePath / "config.json" } \" " +
453
- $ "--filelist \" { basePath / "filelist.txt" } \" " +
454
- $ "--user \" { SignUsername } \" " +
455
- $ "--secret \" { SignPassword } \" " +
456
- "--name \" Silk.NET\" " +
457
- "--description \" Silk.NET\" " +
458
- "--descriptionUrl \" https://github.com/dotnet/Silk.NET\" "
459
- ) . AssertZeroExitCode ( ) ;
446
+ foreach ( var pkg in Packages )
447
+ {
448
+ StartProcess
449
+ (
450
+ execPath ,
451
+ "sign " +
452
+ $ "--baseDirectory { PackageDirectory } " +
453
+ $ "--input \" { pkg } \" " +
454
+ $ "--config \" { basePath / "config.json" } \" " +
455
+ $ "--filelist \" { basePath / "filelist.txt" } \" " +
456
+ $ "--user \" { SignUsername } \" " +
457
+ $ "--secret \" { SignPassword } \" " +
458
+ "--name \" Silk.NET\" " +
459
+ "--description \" Silk.NET\" " +
460
+ "--descriptionUrl \" https://github.com/dotnet/Silk.NET\" "
461
+ ) . AssertZeroExitCode ( ) ;
462
+ }
460
463
}
461
464
462
465
var allFiles = Packages . Select ( ( x , i ) => new { Index = i , Value = x } )
0 commit comments