From 9c3641f6f9a5d74fe30aa135dca32b391a7fb8f9 Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Wed, 14 Dec 2022 18:05:13 -0500 Subject: [PATCH] jenkinsfile fix maybe? --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 40c6617..4fc8cb2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,13 +12,13 @@ pipeline { stage('linux') { steps { sh 'dotnet publish --configuration Release --os linux' - archiveArtifacts artifacts: 'bin/Release/net/net6.0/linux-x64/publish/*.*' + archiveArtifacts artifacts: '/bin/Release/net/net6.0/linux-x64/publish/*.*' } } stage('windows') { steps { sh 'dotnet publish --configuration Release --os windows' - archiveArtifacts artifacts: 'bin/Release/net/net6.0/windows-x64/publish/*.*' + archiveArtifacts artifacts: '/bin/Release/net/net6.0/windows-x64/publish/*.*' } } }