We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cbad58 commit 91ea20fCopy full SHA for 91ea20f
build/Build.cs
@@ -314,7 +314,10 @@ Version Version
314
.Requires(() => ChocolateyApiKey)
315
.Executes(() =>
316
{
317
- Chocolatey($"push logexpert.*.nupkg --key {ChocolateyApiKey} --source https://push.chocolatey.org/", WorkingDirectory = ChocolateyDirectory);
+ ChocolateyDirectory.GlobFiles("**/*.nupkg").ForEach(file =>
318
+ {
319
+ Chocolatey($"push {file} --key {ChocolateyApiKey} --source https://push.chocolatey.org/", WorkingDirectory = ChocolateyDirectory);
320
+ });
321
});
322
323
Target PublishGithub => _ => _
0 commit comments