diff --git a/jenkins/Jenkinsfile b/jenkins/Jenkinsfile index 85dc69f..955f4e7 100644 --- a/jenkins/Jenkinsfile +++ b/jenkins/Jenkinsfile @@ -52,10 +52,10 @@ pipeline { stage('Publish built files') { steps { - sh 'mv ecodash_x86 ecodash' - archiveArtifacts artifacts: ['templates/**', 'ecodash'], name: 'ecodash-x86' - sh 'mv ecodash_arm ecodash' - archiveArtifacts artifacts: ['templates/**', 'ecodash'], name: 'ecodash-arm' + sh 'mv ecodash_x86 ecodash; zip -r ecodash-x86.zip templates ecodash' + archiveArtifacts artifacts: "ecodash-x86.zip" + sh 'mv ecodash_arm ecodash; zip -r ecodash-arm.zip templates ecodash' + archiveArtifacts artifacts: "ecodash-arm.zip" } }