Skip to content

Commit ab5db6b

Browse files
authored
feat(deploy): add support for new production environment 'production-sg-au-uk-jp-kr' in deployment workflow (#9507)
1 parent 3a35d6b commit ab5db6b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ on:
3737
- production-jp
3838
- production-kr
3939
- production-us-and-eu
40+
- production-sg-au-uk-jp-kr
4041

4142
deploy_api:
4243
description: "Deploy API"
@@ -121,6 +122,13 @@ jobs:
121122
envs+=("\"prod-us\"")
122123
envs+=("\"prod-eu\"")
123124
fi
125+
if [ "${{ github.event.inputs.environment }}" == "production-sg-au-uk-jp-kr" ]; then
126+
envs+=("\"prod-apse1\"")
127+
envs+=("\"prod-apse2\"")
128+
envs+=("\"prod-ew2\"")
129+
envs+=("\"prod-apne1\"")
130+
envs+=("\"prod-apne2\"")
131+
fi
124132
125133
# Collect selected services
126134
if [ "${{ github.event.inputs.deploy_api }}" == "true" ]; then

0 commit comments

Comments
 (0)