hoggit/Jenkinsfile
2018-12-26 00:32:57 -06:00

22 lines
274 B
Groovy

pipeline {
agent {
}
stages {
stage('Build') {
steps {
}
}
stage('Deploy') {
when {
branch 'production'
}
steps {
}
}
}
}