File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 4545 if : github.event_name == 'push' && startswith(github.ref, 'refs/heads')
4646 shell : bash
4747 run : |
48- until dotnet nuget push build/output/*.nupkg -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate --no-symbols true; do echo "Retrying"; sleep 1; done;
48+ until dotnet nuget push ' build/output/*.nupkg' -k ${{secrets.GITHUB_TOKEN}} --skip-duplicate --no-symbols true; do echo "Retrying"; sleep 1; done;
4949
5050 - run : ./build.sh generatereleasenotes -s true
5151 name : Generate release notes for tag
5454 if : github.event_name == 'push' && startswith(github.ref, 'refs/tags')
5555 name : Create or update release for tag on github
5656
57- - run : dotnet nuget push build/output/*.nupkg -k ${{secrets.NUGET_ORG_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols true
57+ - run : dotnet nuget push ' build/output/*.nupkg' -k ${{secrets.NUGET_ORG_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols true
5858 name : release to nuget.org
5959 if : github.event_name == 'push' && startswith(github.ref, 'refs/tags')
You can’t perform that action at this time.
0 commit comments