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 ccf8545 commit ad165cfCopy full SHA for ad165cf
.github/workflows/access-token-management-ci.yml
@@ -74,6 +74,12 @@ jobs:
74
if: (github.ref == 'refs/heads/main' || contains(github.ref, 'refs/tags/'))
75
run: dotnet nuget push artifacts\*.nupkg -s https://www.myget.org/F/duende_identityserver/api/v2/package -k ${{ secrets.MYGET }}
76
77
+ - name: Push NuGet package to GitHub Packages
78
+ run: dotnet nuget push artifacts\*.nupkg --source "https://nuget.pkg.github.com/DuendeSoftware/index.json"" --api-key ${{ secrets.GITHUB_TOKEN }}
79
+ env:
80
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
81
+ NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
82
+
83
- name: Upload artifacts
84
uses: actions/upload-artifact@v4
85
0 commit comments