mtg-price-bot/Jenkinsfile
2019-10-15 23:25:37 +03:00

20 lines
223 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'
}
}
}
}