From 70bcbce573515504b3646580ade688a69ffa7bcd Mon Sep 17 00:00:00 2001 From: Christoph Wille Date: Mon, 21 Dec 2020 14:34:47 +0100 Subject: [PATCH] Single-line nuget push because we are not on Linux --- .github/workflows/build-ilspy.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build-ilspy.yml b/.github/workflows/build-ilspy.yml index 9a26511ad..6d3dbc2f7 100644 --- a/.github/workflows/build-ilspy.yml +++ b/.github/workflows/build-ilspy.yml @@ -113,9 +113,7 @@ jobs: - name: Publish NuGet if: github.ref == 'refs/heads/master' && matrix.channel == 'zip' && matrix.configuration == 'release' run: | - dotnet nuget push "ICSharpCode.Decompiler\bin\Release\ICSharpCode.Decompiler*.nupkg" \ - --api-key ${{ secrets.GITHUB_TOKEN }} \ - --source https://nuget.pkg.github.com/${{ github.repository_owner }} + dotnet nuget push "ICSharpCode.Decompiler\bin\Release\ICSharpCode.Decompiler*.nupkg" --api-key ${{ secrets.GITHUB_TOKEN }} --source https://nuget.pkg.github.com/${{ github.repository_owner }} - name: Upload zip release build artifacts if: matrix.channel == 'zip'