From 93c8f6b6ab225e5d64eaf36509dac3d327994e32 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen.haas@lakedrops.com> Date: Wed, 27 Mar 2024 13:51:13 +0100 Subject: [PATCH] gitlab-ci-cd/drupal#73 Change docker compose project name to prefix drupal_ for deployed sites, so that they are different from pipeline project names --- mixins.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mixins.yml b/mixins.yml index c7e7b78..890a361 100644 --- a/mixins.yml +++ b/mixins.yml @@ -27,6 +27,8 @@ stages: .preparecomposerplugins: before_script: + # Downgrade composer if required + - if [[ -n $DOWNGRADE_COMPOSER ]]; then composer self-update --$DOWNGRADE_COMPOSER; fi # Add the Drupal Vendor Hardening Composer Plugin. # see https://github.com/drupal/core-vendor-hardening - composer config --no-plugins --no-interaction allow-plugins.drupal/core-vendor-hardening true -- GitLab