From d7282c256b5acd78ff3e778f50f0f1977e0c2aa9 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 22 May 2023 15:40:42 +0200 Subject: [PATCH] fixed CI --- Jenkinsfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4b2107f..0ba3dc0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { stage('Pack') { steps { - sh 'find . -type f -name \\\'*.nupkg\\\' -delete' + sh 'find . -type f -name "*.nupkg" -delete' sh 'dotnet pack **/GameBundle.csproj --version-suffix ${BUILD_NUMBER}' } } @@ -19,8 +19,7 @@ pipeline { branch 'main' } steps { - sh '''dotnet nuget push -s http://localhost:5000/v3/index.json **/*.nupkg -k $BAGET -n true -''' + sh 'dotnet nuget push -s http://localhost:5000/v3/index.json **/*.nupkg -k $BAGET -n' } }