ci: fix negative conditional for devel deployment
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
a9605f3dd8
commit
cc5784031b
|
@ -43,7 +43,7 @@ pipeline {
|
|||
}
|
||||
|
||||
stage('Publish Devel') {
|
||||
when { expression { env.GIT_BRANCH !=~ /.*master/ } }
|
||||
when { expression { !(env.GIT_BRANCH ==~ /.*master/) } }
|
||||
steps {
|
||||
sshagent(credentials: ['jenkins-ssh']) {
|
||||
sh """
|
||||
|
|
Loading…
Reference in New Issue