From b29daca8a354a9321d7eb6555f1b1d447d477221 Mon Sep 17 00:00:00 2001 From: bronsen <kontakt+gitcommit@nrrd.de> Date: Mon, 3 Mar 2025 22:09:04 +0100 Subject: [PATCH] [playbook,drupal] install actually installable version of drupal and drush --- playbooks/playbook.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/playbook.yaml b/playbooks/playbook.yaml index 2c3ff72..23db4e5 100644 --- a/playbooks/playbook.yaml +++ b/playbooks/playbook.yaml @@ -134,7 +134,7 @@ - name: Create Drupal project. community.general.composer: command: create-project - arguments: drupal/recommended-project:^9 "{{ drupal_core_path }}" + arguments: drupal/recommended-project:^10 "{{ drupal_core_path }}" working_dir: "{{ drupal_core_path }}" no_dev: true become_user: www-data @@ -151,7 +151,7 @@ - name: Add drush to the Drupal site with composer. community.general.composer: command: require - arguments: "drush/drush:^11" + arguments: "drush/drush" working_dir: "{{ drupal_core_path }}" become_user: www-data when: not drupal_composer_json.stat.exists