mtg-price-bot/Jenkinsfile
2019-10-15 23:21:05 +03:00

21 lines
219 B
Groovy

pipeline {
agent any
stages {
stage('Pull') {
steps {
sh git pull
}
}
stage('Test') {
steps {
sh ./deploy.sh test
}
}
stage('Deploy') {
steps {
sh ./deploy.sh prod
}
}
}
}