From 44fc0563543eb073e94acf6be0b2f48112898e53 Mon Sep 17 00:00:00 2001 From: adam Date: Sat, 9 Nov 2024 22:31:04 -0500 Subject: [PATCH] theory: it's not running in the workspace directory. For some reason. --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ed178cd..29d422d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,8 @@ pipeline { stages { stage('nuget'){ steps{ - dotnetPack(outputDirectory: "./", project: "Deployment/") + sh "ls" + dotnetPack(outputDirectory: "./", project: "Deployment/Deployment.csproj") dotnetNugetPublish() } }