vereto-api/Jenkinsfile
2019-02-15 10:19:55 +01:00

15 lines
No EOL
230 B
Groovy

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