File tree Expand file tree Collapse file tree 5 files changed +12
-0
lines changed
Expand file tree Collapse file tree 5 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,17 @@ builddeploy_steps: &builddeploy_steps
2929 ./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-buildvar
3030 source buildenvvar
3131 ./build.sh
32+ ./buildstatic.sh
3233 - deploy :
3334 name : Running MasterScript.
3435 command : |
3536 source awsenvconf
3637 ./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-deployvar
3738 source buildenvvar
3839 ./master_deploy.sh -d CFRONT -e $DEPLOY_ENV -c true
40+ ./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-static-deployvar
41+ source buildenvvar
42+ ./master_deploy.sh -d CFRONT -e $DEPLOY_ENV -c true
3943
4044jobs :
4145 # Build & Deploy against development backend
Original file line number Diff line number Diff line change 11node_modules
22package-lock.json
3+ .DS_Store
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -eo pipefail
3+
4+ mkdir diststatic
5+ cp -rv ./web-assets/auth0/css ./diststatic/
6+ cp -rv ./web-assets/auth0/js ./diststatic/
7+ cp -rv ./web-assets/auth0/images ./diststatic/
You can’t perform that action at this time.
0 commit comments