From 88b467725c238b6af972769143dae57336210f21 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Fri, 21 Feb 2020 15:19:01 +0100 Subject: [PATCH] disable symbols because it doesn#t work with wildcards for some reason --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6bcc85c..e548394 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ done''' stage('Publish') { steps { sh '''for i in **/*.nupkg; do - dotnet nuget push -s http://localhost:5000/v3/index.json $i -k $BAGET + dotnet nuget push -s http://localhost:5000/v3/index.json $i -k $BAGET -n true done''' } }