This repository has been archived on 2023-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
sat-sw-website-legacy/automation/Jenkinsfile
2023-09-19 21:10:54 +02:00

23 lines
487 B
Groovy

pipeline {
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
stages {
stage('Deployment') {
when {
branch 'main'
}
steps {
sh 'echo Hello World'
// sshagent(credentials: ['documentation-buildfix']) {
// Deploy to Apache webserver
// sh 'rsync -r --delete --exclude projects/* --exclude static/font-univers . buildfix@documentation.irs.uni-stuttgart.de:/'
// }
}
}
}
}