Skip to content

Commit d633b22

Browse files
authored
Update build.yml (#30)
* Update build.yml * Update version.json
1 parent aedcf8c commit d633b22

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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: |

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
],

0 commit comments

Comments
 (0)