From d633b22f46a33125282c89d63f55362122f2ce0b Mon Sep 17 00:00:00 2001 From: "Zaafar.A" Date: Thu, 21 Sep 2023 13:56:33 -0400 Subject: [PATCH] Update build.yml (#30) * Update build.yml * Update version.json --- .github/workflows/build.yml | 4 ++++ version.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58eef9f..f0556f3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,10 +63,14 @@ jobs: - name: Publish untagged source package to MyGet if: matrix.os == 'windows-latest' && github.ref == 'refs/heads/master' && matrix.architecture == 'x64' run: dotnet nuget push bin\Packages\Release\*.nupkg -s https://www.myget.org/F/mellinoe/api/v3/index.json --api-key ${{secrets.MYGET_KEY}} + # error can be fixed afterwards and job can be re-triggered + continue-on-error: true - name: Publish tagged source package release to nuget.org if: matrix.os == 'windows-latest' && startsWith(github.ref, 'refs/tags/') && matrix.architecture == 'x64' run: dotnet nuget push bin\Packages\Release\*.nupkg -s https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_KEY}} + # error can be fixed afterwards and job can be re-triggered + continue-on-error: true - name: Build ${{ github.event.inputs.ReleaseType || 'Release' }} run: | diff --git a/version.json b/version.json index a464e9c..8a1e8c7 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.89.11", + "version": "1.89.9", "publicReleaseRefSpec": [ "^refs/tags/v\\d+\\.\\d+" // we also release tags starting with vN.N ],