Changed Jenkinsfile
This commit is contained in:
parent
36030ad9d4
commit
4598a7ec23
2 changed files with 4 additions and 3 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue