vereto-api/Jenkinsfile
2018-03-07 13:51:03 +00:00

14 lines
No EOL
150 B
Groovy

pipeline {
agent any
stages {
stage('deploy') {
steps {
sh '''bundle install &&
cap production deploy'''
}
}
}
}