is this it?!?

This commit is contained in:
Robin Müller 2023-09-20 00:07:18 +02:00
parent e8b8295543
commit 7c3f09b1ff
Signed by: muellerr
GPG Key ID: FCE0B2BD2195142F

View File

@ -3,6 +3,7 @@ pipeline {
dockerfile {
dir 'automation'
reuseNode true
args '--network host'
}
}
// agent any
@ -14,7 +15,7 @@ pipeline {
steps {
sshagent(credentials: ['documentation-buildfix']) {
// Deploy to Apache webserver
sh 'rsync -r --delete --exclude projects/ --exclude static/font-univers/ . buildfix@documentation.irs.uni-stuttgart.de:/'
sh "rsync -r --delete --exclude 'projects/' --exclude static/font-univers . buildfix@documentation.irs.uni-stuttgart.de:/"
}
}
}