From 706ac65af4efc96c28d39fbcff8f02b22f260640 Mon Sep 17 00:00:00 2001 From: Jake Meiergerd Date: Mon, 29 Jun 2026 22:13:55 -0500 Subject: [PATCH] Fixed that the Build and Release action defined in release.yml was attempting to publish a bogus "empty.nupkg" file that exists in the normal build output of the DynamicData.Tests project, as a part of the EmptyFiles package, since the job was written to search for "*.nupkg". The job has been adjusted to only look for "DynamicData.*.nupkg" files. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6eb6faddc..f629fd45a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -119,7 +119,7 @@ jobs: shell: pwsh run: | $ErrorActionPreference = 'Stop' - $packages = Get-ChildItem -Path src -Recurse -Filter '*.nupkg' | Where-Object { $_.FullName -like '*\bin\Release\*' } + $packages = Get-ChildItem -Path src -Recurse -Filter 'DynamicData.*.nupkg' | Where-Object { $_.FullName -like '*\bin\Release\*' } if (-not $packages) { throw "No .nupkg files found under src/**/bin/Release/." } foreach ($pkg in $packages) { dotnet nuget push -s $env:SOURCE_URL -k $env:NUGET_AUTH_TOKEN --skip-duplicate $pkg.FullName