Added squishy file, added dist folder, added Jenkinsfile

This commit is contained in:
Jeremy Smitherman
2018-12-26 00:32:57 -06:00
parent fa8a7e0c04
commit f122c10fb3
3 changed files with 30 additions and 0 deletions
Vendored
+22
View File
@@ -0,0 +1,22 @@
pipeline {
agent {
}
stages {
stage('Build') {
steps {
}
}
stage('Deploy') {
when {
branch 'production'
}
steps {
}
}
}
}