vereto-api/Jenkinsfile
2018-03-07 20:23:46 +00:00

15 lines
No EOL
205 B
Groovy

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