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 b9991fa commit f644fd5Copy full SHA for f644fd5
.github/workflows/release.yml
@@ -44,5 +44,12 @@ jobs:
44
token: ${{ secrets.GITHUB_TOKEN }}
45
body: ${{ steps.changelog_reader.outputs.log_entry }}
46
47
+ # Get a short-lived NuGet API key
48
+ - name: NuGet login
49
+ uses: NuGet/login@v1
50
+ id: login
51
+ with:
52
+ user: ${{secrets.NUGET_USER}}
53
+
54
- name: Push packages
- run: dotnet nuget push bin/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_KEY }}
55
+ run: dotnet nuget push bin/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{steps.login.outputs.NUGET_API_KEY}}
0 commit comments