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:
63
63
- name : Publish untagged source package to MyGet
64
64
if : matrix.os == 'windows-latest' && github.ref == 'refs/heads/master' && matrix.architecture == 'x64'
65
65
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
66
68
67
69
- name : Publish tagged source package release to nuget.org
68
70
if : matrix.os == 'windows-latest' && startsWith(github.ref, 'refs/tags/') && matrix.architecture == 'x64'
69
71
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
70
74
71
75
- name : Build ${{ github.event.inputs.ReleaseType || 'Release' }}
72
76
run : |
Original file line number Diff line number Diff line change 1
1
{
2
2
"$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 " ,
4
4
"publicReleaseRefSpec" : [
5
5
" ^refs/tags/v\\ d+\\ .\\ d+" // we also release tags starting with vN.N
6
6
],
You can’t perform that action at this time.
0 commit comments