19 lines
343 B
Groovy
19 lines
343 B
Groovy
pipeline {
|
|
agent {
|
|
dockerfile {
|
|
dir 'automation'
|
|
reuseNode true
|
|
}
|
|
}
|
|
stages {
|
|
stage('Deployment') {
|
|
steps {
|
|
sshagent(credentials: ['documentation-buildfix']) {
|
|
// Deploy to Apache webserver
|
|
sh 'rsync -r buildfix@documentation.irs.uni-stuttgart.de:/'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|