Add missing commas
Some checks failed
ecodash/pipeline/head There was a failure building this commit

This commit is contained in:
MassiveBox 2023-07-22 10:26:14 +02:00
parent c650a1fae1
commit fa28b77c52
Signed by: massivebox
GPG key ID: 9B74D3A59181947D

4
jenkins/Jenkinsfile vendored
View file

@ -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'
}
}