From 7ce3edc908254ffa7a0afbe7e093374d0a51dbfc Mon Sep 17 00:00:00 2001 From: Toby Bellwood Date: Fri, 17 May 2024 11:36:05 +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 6929503..71889c0 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