ci: fix negative conditional for devel deployment

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-06-23 11:48:09 +02:00
parent a9605f3dd8
commit cc5784031b
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -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 """