Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit e0ac336

Browse files
authored
Update config.yml
1 parent d62f912 commit e0ac336

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.circleci/config.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ install_dependency: &install_dependency
1111
install_deploysuite: &install_deploysuite
1212
name: Installation of install_deploysuite.
1313
command: |
14-
git clone --branch v1.4 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
14+
git clone --branch v1.4.1 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
1515
cp ./../buildscript/master_deploy.sh .
1616
cp ./../buildscript/buildenv.sh .
1717
cp ./../buildscript/awsconfiguration.sh .
@@ -36,22 +36,24 @@ builddeploy_steps: &builddeploy_steps
3636
command: |
3737
./awsconfiguration.sh $DEPLOY_ENV
3838
source awsenvconf
39-
./buildenv.sh -e $DEPLOY_ENV -b ${DEPLOY_ENV}-topcoder-x-receiver-deployvar
39+
./buildenv.sh -e $DEPLOY_ENV -b ${DEPLOY_ENV}-${APPNAME}-deployvar
4040
source buildenvvar
41-
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s dev-global-appvar,${DEPLOY_ENV}-topcoder-x-receiver-appvar -i topcoder-x-receiver
41+
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${DEPLOY_ENV}-global-appvar,${DEPLOY_ENV}-${APPNAME}-appvar -i topcoder-x-receiver
4242
jobs:
4343
# Build & Deploy against development backend
4444
"build-dev":
4545
<<: *defaults
4646
environment:
4747
DEPLOY_ENV: "dev"
48+
APPNAME: "topcoder-x-receiver"
4849
steps: *builddeploy_steps
4950

5051
# Build & Deploy against production backend
5152
"build-prod":
5253
<<: *defaults
5354
environment:
5455
DEPLOY_ENV: "prod"
56+
APPNAME: "topcoder-x-receiver"
5557
steps: *builddeploy_steps
5658

5759
workflows:

0 commit comments

Comments
 (0)