Skip to content

Commit

Permalink
DIGITAL-158: Make branch name develop instead of deploydev.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsqd committed Jan 3, 2025
1 parent f108827 commit 3439ed5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cloudgov-deploy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
run: |
BRANCH=$(echo $GITHUB_REF | cut -d'/' -f 3)
if [[ $BRANCH == *deploydev ]]; then
BRANCH="deploydev"
BRANCH="develop"
fi
COMPOSER_DEV=1
GSA_AUTH_KEY=${{ secrets.GSA_AUTH_DEVELOPMENT_KEY }}
case ${BRANCH} in
develop | deploydev)
develop)
CF_SPACE="dev"
DRUPAL_MEMORY=${{ vars.DEVELOP_CMS_MEMORY }}
DRUPAL_INSTANCES=${{ vars.DEVELOP_INSTANCES }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/terraform-deploy-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
run: |
BRANCH=$(echo $GITHUB_REF | cut -d'/' -f 3)
if [[ $BRANCH == *deploydev ]]; then
BRANCH="deploydev"
BRANCH="develop"
fi
case ${BRANCH} in
develop | deploydev)
develop)
CF_SPACE="dev"
;;
main)
Expand Down

0 comments on commit 3439ed5

Please sign in to comment.