From 863011b731d9743033d6b371eb1c2719fe93293b Mon Sep 17 00:00:00 2001 From: Mikayla Hutchinson Date: Tue, 15 Oct 2019 20:00:42 -0400 Subject: [PATCH] NuGet push to GPR doesn't work on Linux https://github.com/NuGet/Home/issues/8580 --- .github/workflows/linux.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index d2aced7..78f3727 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -22,11 +22,3 @@ jobs: - name: Test run: mono ./testrunner/NUnit.ConsoleRunner.3.8.0/tools/nunit3-console.exe ./Mono.TextTemplating.Tests/bin/Release/net472/Mono.TextTemplating.Tests.dll - - - name: Configure NuGet - run: mono nuget.exe source Add -Name "GitHub" -Source "https://nuget.pkg.github.com/mono/index.json" -UserName mono -Password ${{ secrets.GITHUB_TOKEN }} - if: github.ref == 'refs/heads/master' - - - name: Push NuGet packages - run: for f in packages/Release/*; do mono nuget.exe push -Source "GitHub" $f; done - if: github.ref == 'refs/heads/master'