diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index 50d8e67..0651995 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -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:/' + } } } }