From c345ea920a3c77aff21d75e93e25c6bc158da082 Mon Sep 17 00:00:00 2001 From: Chris Richards Date: Mon, 29 Mar 2021 21:34:34 +0100 Subject: [PATCH] Fixes nuget push step --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5429507..7beb955 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,8 +52,8 @@ jobs: - name: Push to NuGet Feed env: NUGET_URL: https://api.nuget.org/v3/index.json - NUGET_API_KEY: ${{ secrets.MYGET_API_KEY }} - run: dotnet nuget push ./artifacts/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key $NUGET_KEY + NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} + run: dotnet nuget push ./artifacts/*.nupkg --source $NUGET_URL --skip-duplicate --api-key $NUGET_API_KEY - name: Artifacts uses: actions/upload-artifact@v2 with: