We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2e1547 commit beed787Copy full SHA for beed787
.github/workflows/dotnet.yml
@@ -24,4 +24,6 @@ jobs:
24
- name: Generate NuGet package
25
run: dotnet pack --no-build -c --include-source Release src/EventSourcingOnAzureFunctions.Common/EventSourcingOnAzureFunctions.Common.csproj -o src/EventSourcingOnAzureFunctions.Common
26
- name: Push NuGet package
27
- run: dotnet nuget push src/EventSourcingOnAzureFunctions.Common/EventSourcingOnAzureFunctions.Common.nupkg -s https://api.nuget.org/v3/index.json -k ${{ NUGET_KEY }} --skip-duplicate
+ env:
28
+ 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
0 commit comments