We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aee827 commit e73b67aCopy full SHA for e73b67a
.github/workflows/build.yml
@@ -42,6 +42,7 @@ jobs:
42
dotnet-version: |
43
3.1.x
44
6.0.x
45
+ 7.0.x
46
47
- name: Restore Dependencies
48
run: dotnet restore
@@ -68,6 +69,6 @@ jobs:
68
69
run: |
70
for package in $(find -name "*.nupkg"); do
71
echo "${0##*/}": Pushing $package...
- dotnet nuget push $package --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_KEY }} --skip-duplicate
72
+ dotnet nuget push $package --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
73
done
74
0 commit comments