fixed bootstrap/cache
All checks were successful
CI/CD Pipeline / test (push) Successful in 2s
CI/CD Pipeline / deploy (push) Successful in 21s
CI/CD Pipeline / promote_stable (push) Successful in 2s

This commit is contained in:
2026-02-13 10:15:30 +01:00
parent c1cb3f394a
commit 80a8b86a08
2 changed files with 7 additions and 1 deletions

View File

@@ -21,6 +21,12 @@
path: "{{ prod_base_dir }}/.env" path: "{{ prod_base_dir }}/.env"
register: env_file register: env_file
- name: Ensure bootstrap cache directory exists
file:
path: "{{ prod_base_dir }}/bootstrap/cache"
state: directory
mode: "0775"
- name: Download and installs all libs and dependencies - name: Download and installs all libs and dependencies
block: block:
- name: Composer install - name: Composer install

View File

@@ -98,5 +98,5 @@
"minimum-stability": "stable", "minimum-stability": "stable",
"prefer-stable": true, "prefer-stable": true,
"version": "26.0.2", "version": "26.0.2",
"build": "65" "build": "66"
} }