We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8183e0 commit 402e74bCopy full SHA for 402e74b
.github/workflows/build.yml
@@ -51,11 +51,11 @@ jobs:
51
52
- name: Pack NuGet artifacts
53
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
54
- run: dotnet pack --no-build -c Release -p:PackageVersion="${{ env.VERSION }}"
+ run: dotnet pack --no-build -c Release -p:PackageVersion="${{ env.VERSION }}" -o nupkgs
55
56
- name: Upload artifacts
57
58
uses: actions/upload-artifact@v4
59
with:
60
name: nupkgs
61
- path: src/**/*nupkg
+ path: nupkgs/**/*nupkg
0 commit comments