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') {
|
stage('Publish Devel') {
|
||||||
when { expression { env.GIT_BRANCH !=~ /.*master/ } }
|
when { expression { !(env.GIT_BRANCH ==~ /.*master/) } }
|
||||||
steps {
|
steps {
|
||||||
sshagent(credentials: ['jenkins-ssh']) {
|
sshagent(credentials: ['jenkins-ssh']) {
|
||||||
sh """
|
sh """
|
||||||
|
|
Loading…
Reference in New Issue