Skip to content

Commit 3f5167a

Browse files
committed
Specify a different release image repo
1 parent 8e5c2a6 commit 3f5167a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Jenkinsfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ pipeline {
136136
}
137137
}
138138
stage('push-images') {
139+
when {
140+
expression { env.SKIP_TESTS != 'true' }
141+
}
139142
steps {
140143
echo 'Docker Push'
141144
script {
@@ -157,6 +160,9 @@ pipeline {
157160
}
158161
}
159162
stage('create-secrets') {
163+
when {
164+
expression { env.SKIP_TESTS != 'true' }
165+
}
160166
steps {
161167
echo 'Create K8s secrets'
162168
script {

0 commit comments

Comments
 (0)