From 805b0cc4768df618fa256502c8e2a4a620b4ebe2 Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Sun, 3 Dec 2023 22:11:15 -0500 Subject: [PATCH] jenkinsfile update attempt again --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b1e98b7..722863b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,13 +9,13 @@ pipeline { } stage('linux') { steps { - sh 'dotnet publish --configuration Release --os linux' + sh 'dotnet publish directors-assistant.csproj --configuration Release --os linux' archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*.*' } } stage('windows') { steps { - sh 'dotnet publish --configuration Release --os windows' + sh 'dotnet publish directors-assistant.csproj --configuration Release --os windows' archiveArtifacts artifacts: 'bin/Release/net7.0/windows-x64/publish/*.*' } }