Skip to content

Commit 94d45a5

Browse files
committed
Add temporary deployment branch
1 parent 7467891 commit 94d45a5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Jenkinsfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,21 @@ pipeline {
4848
sh "jenkins/deploy-staging-api-match-list.sh"
4949
}
5050
}
51+
stage('Deploy staging') {
52+
when {
53+
branch "main-nan-testing";
54+
}
55+
steps {
56+
script {
57+
indicator_list.each { indicator ->
58+
deploy_staging[indicator] = {
59+
sh "jenkins/deploy-staging.sh ${indicator}"
60+
}
61+
}
62+
parallel deploy_staging
63+
}
64+
}
65+
}
5166
stage('Deploy production') {
5267
when {
5368
branch "prod";

0 commit comments

Comments
 (0)