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 190a81f commit 334a572Copy full SHA for 334a572
.github/workflows/publish-nuget.yml
@@ -29,5 +29,10 @@ jobs:
29
- name: Pack
30
run: dotnet pack --no-build --configuration Release --output ./Release
31
32
- - name: Publish to NuGet
33
- run: dotnet nuget push ./Release/*.nupkg -s nuget.org
+ - name: NuGet Login
+ uses: NuGet/login@v1
34
+ with:
35
+ user: hazzik
36
+
37
+ - name: NuGet Publish
38
+ run: dotnet nuget push ./Release/*.nupkg -s nuget.org -k ${{ steps.login.outputs.NUGET_API_KEY }}
0 commit comments