Added jenkins file

This commit is contained in:
vereto-admin 2018-03-07 13:51:03 +00:00
parent ab22669b02
commit 2dcb748830

14
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,14 @@
pipeline {
agent any
stages {
stage('deploy') {
steps {
sh '''bundle install &&
cap production deploy'''
}
}
}
}