Skip to content

Commit 007aed9

Browse files
Use explicit nupkgs path
1 parent ffceafe commit 007aed9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- name: Test
2323
run: dotnet test --configuration Release --no-build --verbosity normal src/EventSourcingOnAzureFunctions.sln
2424
- name: Generate NuGet package
25-
run: dotnet pack --no-build --include-source -c Release src/EventSourcingOnAzureFunctions.Common/EventSourcingOnAzureFunctions.Common.csproj -o src/EventSourcingOnAzureFunctions.Common
25+
run: dotnet pack --no-build --include-source -c Release src/EventSourcingOnAzureFunctions.Common/EventSourcingOnAzureFunctions.Common.csproj -o nupkgs
2626
- name: Push NuGet package
2727
env:
2828
NUGET_KEY: ${{ secrets.NUGET_KEY }}
29-
run: dotnet nuget push src/EventSourcingOnAzureFunctions.Common/EventSourcingOnAzureFunctions.Common.nupkg -s https://api.nuget.org/v3/index.json -k $NUGET_KEY --skip-duplicate
29+
run: dotnet nuget push nupkgs/*.nupkg -s https://api.nuget.org/v3/index.json -k $NUGET_KEY --skip-duplicate

0 commit comments

Comments
 (0)