From 6a7ddcd45d813ed5509e5de3e156eb05d753619a Mon Sep 17 00:00:00 2001 From: Adam R Grey Date: Wed, 14 Dec 2022 18:06:25 -0500 Subject: [PATCH] jenkinsfix? boy good thing it's in the cloud, makes it a god damn pain in the ass --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4fc8cb2..6bf9ac9 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/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/net6.0/windows-x64/publish/*.*' } } }