From f0ac2859b51bcf89179475e27a8e2cdb98ba00bd Mon Sep 17 00:00:00 2001 From: Toby Bellwood Date: Fri, 17 May 2024 11:35:58 +1000 Subject: [PATCH] chore: order post-rollout tasks --- .lagoon.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.lagoon.yml b/.lagoon.yml index 13055b7..d32b97d 100644 --- a/.lagoon.yml +++ b/.lagoon.yml @@ -12,17 +12,17 @@ tasks: # when: LAGOON_ENVIRONMENT_TYPE=="production" post-rollout: - # - run: - # name: drush cim - # # Enable once config sync has been setup. - # command: drush -y cim - # service: cli - run: name: drush updb # This will only run if the database exists. command: | if [[ $(drush status --field=Database) == "Connected" ]]; then drush -y updb; fi service: cli + # - run: + # name: drush cim + # # Enable once config sync has been setup. + # command: drush -y cim + # service: cli - run: name: drush cr command: drush -y cr