From ad4c5b7a4bcc087a834d61dd702d31213c91102f Mon Sep 17 00:00:00 2001 From: Chris Richards Date: Mon, 29 Mar 2021 21:09:10 +0100 Subject: [PATCH] Fixes nuget url, changes build name --- .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 eccc637..5429507 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: .NET Core +name: Build on: push: pull_request: @@ -51,7 +51,7 @@ jobs: run: dotnet pack -v normal -c Release --include-symbols --include-source -p:PackageVersion=$VERSION -o ./artifacts/*.nupkg - name: Push to NuGet Feed env: - NUGET_URL: https://www.myget.org/F/aisparser/api/v3/index.json + 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 - name: Artifacts