jenkins update

This commit is contained in:
PromoStarr 2018-03-07 20:05:43 +00:00
parent 2dcb748830
commit 09b183b490

10
Jenkinsfile vendored
View file

@ -1,13 +1,11 @@
pipeline {
agent any
agent {
docker 'ruby:2.3'
}
stages {
stage('deploy') {
steps {
sh '''bundle install &&
cap production deploy'''
sh 'bundle install && cap production deploy'
}
}
}