diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56283167..d7d2e59d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: script-path: build.cake target: pushpackages env: - NUGET_API_KEY: ${{ secrets.MYGET_API_KEY }} + NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} services: redis: diff --git a/build.cake b/build.cake index abee7d44..d96cd8b4 100644 --- a/build.cake +++ b/build.cake @@ -118,8 +118,8 @@ Task("PushPackages") var settings = new DotNetNuGetPushSettings { - //Source = "https://api.nuget.org/v3/index.json", - Source = "https://www.myget.org/F/nimbusapi/api/v3/index.json", + Source = "https://api.nuget.org/v3/index.json", + //Source = "https://www.myget.org/F/nimbusapi/api/v3/index.json", ApiKey = nugetApiKey, };