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 35052f6 commit 3ac99efCopy full SHA for 3ac99ef
.github/workflows/branches-ubuntu.yml
@@ -86,4 +86,8 @@ jobs:
86
env:
87
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
88
- name: Publish the package to GPR
89
- run: cd ./nupkg && dotnet nuget push *.nupkg -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate
+ run: |
90
+ for f in ./nupkg/*.nupkg
91
+ do
92
+ curl -vX PUT -u "graphql-dotnet:${{ secrets.GHPackagesToken }}" -F package=@$f https://nuget.pkg.github.com/graphql-dotnet/
93
+ done
0 commit comments