From fa28b77c5214236ed514d759bb7f7036cee0cd11 Mon Sep 17 00:00:00 2001 From: MassiveBox Date: Sat, 22 Jul 2023 10:26:14 +0200 Subject: [PATCH] Add missing commas --- jenkins/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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' } }