From c1e32ef39a584f9c7508b2c4ae5a3742a771d091 Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Tue, 5 Dec 2023 22:59:30 -0500 Subject: [PATCH] fix failure to adapt --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index fa8b307..35f83cc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { } stage('Build') { steps { - sh 'dotnet publish directors-assistant.csproj --configuration Release --os linux' + sh 'dotnet publish vassago.csproj --configuration Release --os linux' archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*' } }