this should do the deployment job

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

View File

@ -8,7 +8,10 @@ pipeline {
stages {
stage('Deployment') {
steps {
sh 'rsync -h'
sshagent(credentials: ['documentation-buildfix']) {
// Deploy to Apache webserver
sh 'rsync -r buildfix@documentation.irs.uni-stuttgart.de:/'
}
}
}
}