We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8025a45 commit 50fdec1Copy full SHA for 50fdec1
.github/workflows/ci.yml
@@ -68,3 +68,12 @@ jobs:
68
echo "✅ Package created successfully (NU5017 is a known false positive with centralized package management)"
69
ls -lh ../NuGetPackages/*.nupkg
70
71
+ - name: Copy NuGet packages
72
+ run: |
73
+ mkdir -p ~/drop/dotnet/NuGetPackages && cp -v ../NuGetPackages/*.nupkg $_
74
+
75
+ - name: Upload NuGet packages as artifact
76
+ uses: actions/upload-artifact@v4
77
+ with:
78
+ name: dotnet-packages-${{ github.run_number }}
79
+ path: ~/drop/dotnet/NuGetPackages/*
0 commit comments