From 05077b5bb9ce1835ce8d5033ef09443fda4e8b51 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 6 Jul 2026 17:31:44 +0000 Subject: [PATCH 1/2] Initial plan From 14c67af2afac652dd1df0b884719149adc2eb04d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 6 Jul 2026 17:35:49 +0000 Subject: [PATCH 2/2] Fix NuGet package job: copy from artifact root instead of non-existent subdirectory --- .github/workflows/nuget-publish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nuget-publish.yml b/.github/workflows/nuget-publish.yml index 11ed30c..8f7b077 100644 --- a/.github/workflows/nuget-publish.yml +++ b/.github/workflows/nuget-publish.yml @@ -114,9 +114,8 @@ jobs: New-Item -ItemType Directory -Path $targetDir -Force } - # Copy contents (artifact already contains $platformDir/$config in its paths) - $sourceDir = "$($_.FullName)/$platformDir/$config" - Copy-Item -Path "$sourceDir/*" -Destination $targetDir -Recurse -Force + # Copy contents from artifact root (upload-artifact strips the common ancestor path) + Copy-Item -Path "$($_.FullName)/*" -Destination $targetDir -Recurse -Force } }