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 dd099d8 commit f58c8c3Copy full SHA for f58c8c3
.github/workflows/build.yml
@@ -67,7 +67,13 @@ jobs:
67
run: dotnet nuget add source https://nuget.pkg.github.com/RehanSaeed/index.json --name GitHub --username RehanSaeed --password ${{secrets.GITHUB_TOKEN}}
68
shell: pwsh
69
- name: 'Dotnet NuGet Push'
70
- run: dotnet nuget push .\windows-latest\*.nupkg --source GitHub --skip-duplicate
+ run: |
71
+ $count = 0;
72
+ do {
73
+ ++$count;
74
+ dotnet nuget push .\windows-latest\*.nupkg --source GitHub --skip-duplicate;
75
+ }
76
+ while ($count -lt 30 -and $LastExitCode -ne 0)
77
78
79
push-nuget:
0 commit comments