From 09f439188a385fbd944153e4b6b0375494e26004 Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 25 Mar 2025 17:15:02 -0400 Subject: [PATCH] build to dist? --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3bd225d..179f854 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,8 +14,8 @@ pipeline { } stage('Build') { steps { - sh 'dotnet publish vassago.csproj --configuration Release --os linux' - archiveArtifacts artifacts: 'bin/Release/net8.0/linux-x64/publish/*' + dotnetBuild(outputDirectory: "./dist", project: "vassago.csproj") + archiveArtifacts artifacts: 'dist/*' } } stage ('upload') {