Skip to content

Commit 402e74b

Browse files
authored
use output to pack nupkgs (#143)
1 parent d8183e0 commit 402e74b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ jobs:
5151

5252
- name: Pack NuGet artifacts
5353
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
54-
run: dotnet pack --no-build -c Release -p:PackageVersion="${{ env.VERSION }}"
54+
run: dotnet pack --no-build -c Release -p:PackageVersion="${{ env.VERSION }}" -o nupkgs
5555

5656
- name: Upload artifacts
5757
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
5858
uses: actions/upload-artifact@v4
5959
with:
6060
name: nupkgs
61-
path: src/**/*nupkg
61+
path: nupkgs/**/*nupkg

0 commit comments

Comments
 (0)