From 222aa0c3046d76bdbda7b8bd17bc749a5cdf83c3 Mon Sep 17 00:00:00 2001 From: adam Date: Sat, 9 Nov 2024 23:48:25 -0500 Subject: [PATCH] alright feeling good about this one kinda --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c14836e..0fc76a3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,19 +6,17 @@ pipeline { steps{ dotnetPack(outputDirectory: "./", project: "nugettest/") sh """ - - echo "i really just want to know if the fucking \$BUILD_NUMBER works" filename=\$(ls ./*.nupkg | head -1) fullfilename=\$(basename -- \$filename) noext=\${fullfilename%.*} - echo "mv fullfilename \$noext-\$BUILD_NUMBER.nupkg" + mv fullfilename \$noext-\$BUILD_NUMBER.nupkg files=null fullfilename=null noext=null """ - dotnetNuGetPush(root: "./") + dotnetNuGetPush(root: "./*.nupkg") } } }