From ed4d0411270b2fffcbf747f1eb45b0f22a0733c3 Mon Sep 17 00:00:00 2001 From: Elmer Thomas Date: Fri, 17 Jan 2020 15:39:47 -0800 Subject: [PATCH] fix: nuget push flag (#971) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f497112ef..5dddb4f9b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,7 @@ after_success: deploy: skip_cleanup: true provider: script - script: nuget push ./src/SendGrid/bin/Release/SendGrid.*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json + script: nuget push ./src/SendGrid/bin/Release/SendGrid.*.nupkg -ApiKey $NUGET_API_KEY -Source https://api.nuget.org/v3/index.json on: branch: master tags: true