Fixed brackets in jenkinsfile 2

pull/3/head 0.1.0
yuobrezkov 2025-02-21 14:35:54 +03:00
parent df8b603a01
commit ee0854c74b
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -9,7 +9,7 @@ pipeline {
stages { stages {
stage('Init variables') { stage('Init variables') {
when { when {
expression{env.CHANGE_BRANCH?.startsWith('rc')} expression { env.CHANGE_BRANCH?.startsWith('rc') }
} }
steps { steps {
script { script {
@ -19,7 +19,7 @@ pipeline {
} }
stage('Build tagged image and run tests') { stage('Build tagged image and run tests') {
when { when {
expression(env.CHANGE_BRANCH?.startsWith('rc')) expression { env.CHANGE_BRANCH?.startsWith('rc') }
} }
steps { steps {
script { script {