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 71d3fc7 commit ff4973cCopy full SHA for ff4973c
.github/workflows/nuget-pack.yml
@@ -36,11 +36,14 @@ jobs:
36
- name: Add private GitHub registry to NuGet
37
run: dotnet nuget add source https://nuget.pkg.github.com/RelationalAI-oss/index.json -n GPR -u RelationalAI-oss -p ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
38
39
+ - name: Install gpr tool
40
+ run: dotnet tool install gpr -g
41
+
42
- name: Push generated package to GitHub registry
43
run: |
44
for f in DelveClientSDK/bin/Release/*.nupkg
45
do
- dotnet nuget push $f --source "GPR"
46
+ gpr push $f -k ${{ secrets.GITHUB_TOKEN }}
47
done
48
shell: bash
49
0 commit comments