From d023b8371dac8e9238e3a5b400106537a9fdac57 Mon Sep 17 00:00:00 2001 From: Christoph Wille Date: Sun, 15 Nov 2020 11:00:47 +0100 Subject: [PATCH] Switch to nuget push (via https://stackoverflow.com/questions/63782694/push-nuget-package-to-github-package-registry-the-response-ended-prematurely-a) --- .github/workflows/build-ilspy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-ilspy.yml b/.github/workflows/build-ilspy.yml index bebefb9b8..81e26494f 100644 --- a/.github/workflows/build-ilspy.yml +++ b/.github/workflows/build-ilspy.yml @@ -123,4 +123,6 @@ jobs: - name: Push to Github Packages if: github.ref == 'refs/heads/master' && success() && matrix.channel == 'zip' && matrix.configuration == 'release' - run: dotnet nuget push ICSharpCode.Decompiler\bin\Release\ICSharpCode.Decompiler*.nupkg --no-symbols --skip-duplicate + run: nuget.exe push ICSharpCode.Decompiler\bin\Release\ICSharpCode.Decompiler*.nupkg -NoSymbols -SkipDuplicate + env: + NUGET_AUTH_TOKEN: ${{ github.token }}