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 106d287 commit 8e3bbb7Copy full SHA for 8e3bbb7
TUnit.Pipeline/Modules/UploadToNuGetModule.cs
@@ -38,7 +38,7 @@ protected override Task<SkipDecision> ShouldSkip(IPipelineContext context)
38
protected override async Task<CommandResult[]?> ExecuteAsync(IPipelineContext context, CancellationToken cancellationToken)
39
{
40
var nupkgs = context.Git().RootDirectory
41
- .GetFiles(x => x.Extension is ".nupkg");
+ .GetFiles(x => x.NameWithoutExtension.Contains("TUnit") && x.Extension is ".nupkg");
42
43
return await nupkgs.SelectAsync(file =>
44
context.DotNet().Nuget.Push(new DotNetNugetPushOptions(file)
0 commit comments