vereto-api/Jenkinsfile

14 lines
150 B
Text
Raw Normal View History

2018-03-07 13:51:03 +00:00
pipeline {
agent any
stages {
stage('deploy') {
steps {
sh '''bundle install &&
cap production deploy'''
}
}
}
}