diff --git a/jenkins/Jenkinsfile b/jenkins/Jenkinsfile index d97746e..85dc69f 100644 --- a/jenkins/Jenkinsfile +++ b/jenkins/Jenkinsfile @@ -53,9 +53,9 @@ pipeline { stage('Publish built files') { steps { sh 'mv ecodash_x86 ecodash' - archiveArtifacts artifacts: ['templates/**', 'ecodash'] name: 'ecodash-x86' + archiveArtifacts artifacts: ['templates/**', 'ecodash'], name: 'ecodash-x86' sh 'mv ecodash_arm ecodash' - archiveArtifacts artifacts: ['templates/**', 'ecodash'] name: 'ecodash-arm' + archiveArtifacts artifacts: ['templates/**', 'ecodash'], name: 'ecodash-arm' } }