From b1b9eccda97c1c2ccc37fc5f52a25e6bdf4fbdda Mon Sep 17 00:00:00 2001 From: Andrew Theken Date: Tue, 29 Aug 2017 16:01:56 -0400 Subject: [PATCH] Use correct feeds and build settings for publishing. --- scripts/ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci b/scripts/ci index 87396fc..8a31841 100755 --- a/scripts/ci +++ b/scripts/ci @@ -19,7 +19,7 @@ dotnet pack ./Postmark/Postmark.csproj --no-build -c Release -o ../../tmp /p:Ass if [[ $TRAVIS_TAG && $NUGET_API_KEY && $MYGET_API_KEY ]]; then echo 'This package will be published to NuGet, and MyGet' - dotnet nuget push -s https://www.myget.org/F/postmark-ci/api/v3/index.json -k $NUGET_API_KEY ../tmp/*.nupkg + dotnet nuget push -s https://www.nuget.org/ -k $NUGET_API_KEY ../tmp/*.nupkg dotnet nuget push -s https://www.myget.org/F/postmark-ci/api/v3/index.json -k $MYGET_API_KEY ../tmp/*.nupkg else echo 'This package will be published to the CI "MyGet" feed:'