vereto-api/Jenkinsfile
2018-03-07 20:05:43 +00:00

12 lines
No EOL
167 B
Groovy

pipeline {
agent {
docker 'ruby:2.3'
}
stages {
stage('deploy') {
steps {
sh 'bundle install && cap production deploy'
}
}
}
}