We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4462772 commit e679617Copy full SHA for e679617
Jenkinsfile
@@ -48,6 +48,21 @@ pipeline {
48
sh "jenkins/deploy-staging-api-match-list.sh"
49
}
50
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
66
stage('Deploy production') {
67
when {
68
branch "prod";
0 commit comments