chore (Jenkinsfile): Only deploy if branch is master
This commit is contained in:
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
@ -21,6 +21,9 @@ pipeline {
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
when {
|
||||
branch 'master'
|
||||
}
|
||||
steps {
|
||||
container('vault') {
|
||||
script {
|
||||
|
Reference in New Issue
Block a user