Fixed jenkinsfile

This commit is contained in:
Artyom Belousov 2019-10-15 23:25:37 +03:00
parent 4598a7ec23
commit e896b3abba

7
Jenkinsfile vendored
View file

@ -1,20 +1,19 @@
pipeline {
agent any
stages {
stage('Pull') {
steps {
sh git pull
sh 'git pull'
}
}
stage('Test') {
steps {
sh ./deploy.sh test
sh './deploy.sh test'
}
}
stage('Deploy') {
steps {
sh ./deploy.sh prod
sh './deploy.sh prod'
}
}
}