From 5843655fe8ee710015dfc38af076cbd61843d436 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Fri, 21 Feb 2020 15:05:15 +0100 Subject: [PATCH] actually use the right command --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d3ab991..db97e97 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ done''' stage('Publish') { steps { sh '''for i in **/*.nupkg; do - nuget push $i -Source https://nuget.ellpeck.de/v3/index.json + dotnet nuget push -s http://localhost:5000/v3/index.json $i -k $BAGET done''' } }