update jenkinsfile

This commit is contained in:
Robin Müller 2023-09-12 10:30:34 +02:00
parent dd3413a0bb
commit 8f59989d6c
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -1,10 +1,15 @@
pipeline {
agent { dockerfile true }
stages {
stage('Deployment') {
steps {
sh 'rsync -h'
}
}
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
stages {
stage('Deployment') {
steps {
sh 'rsync -h'
}
}
}
}