File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -63,10 +63,14 @@ jobs:
6363 - name : Publish untagged source package to MyGet
6464 if : matrix.os == 'windows-latest' && github.ref == 'refs/heads/master' && matrix.architecture == 'x64'
6565 run : dotnet nuget push bin\Packages\Release\*.nupkg -s https://www.myget.org/F/mellinoe/api/v3/index.json --api-key ${{secrets.MYGET_KEY}}
66+ # error can be fixed afterwards and job can be re-triggered
67+ continue-on-error : true
6668
6769 - name : Publish tagged source package release to nuget.org
6870 if : matrix.os == 'windows-latest' && startsWith(github.ref, 'refs/tags/') && matrix.architecture == 'x64'
6971 run : dotnet nuget push bin\Packages\Release\*.nupkg -s https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}}
72+ # error can be fixed afterwards and job can be re-triggered
73+ continue-on-error : true
7074
7175 - name : Build ${{ github.event.inputs.ReleaseType || 'Release' }}
7276 run : |
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json" ,
3- "version" : " 1.89.11 " ,
3+ "version" : " 1.89.9 " ,
44 "publicReleaseRefSpec" : [
55 " ^refs/tags/v\\ d+\\ .\\ d+" // we also release tags starting with vN.N
66 ],
You can’t perform that action at this time.
0 commit comments