mtg-price-bot/Jenkinsfile
2020-08-31 17:23:58 +03:00

15 lines
167 B
Groovy

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