Changed Jenkinsfile

This commit is contained in:
Artyom Belousov 2019-10-15 23:21:05 +03:00
parent 36030ad9d4
commit 4598a7ec23
2 changed files with 4 additions and 3 deletions

6
Jenkinsfile vendored
View file

@ -4,17 +4,17 @@ pipeline {
stages {
stage('Pull') {
steps {
git pull
sh git pull
}
}
stage('Test') {
steps {
./deploy.sh test
sh ./deploy.sh test
}
}
stage('Deploy') {
steps {
./deploy.sh prod
sh ./deploy.sh prod
}
}
}