fix: deploy
Some checks failed
Deploy / deploy (push) Failing after 3m11s

This commit is contained in:
ext.jeremy.guillot@maxicoffee.domains
2026-03-10 23:05:11 +01:00
parent 16f87d5f06
commit 566b62450e

View File

@@ -39,6 +39,11 @@ task('docker:restart', function () {
run('docker restart mangarr');
});
// Pas de PHP sur l'hôte : désactiver les tâches Symfony qui en ont besoin
// Le cache et les migrations sont gérés par l'entrypoint.sh au démarrage du container
task('deploy:cache:clear', function () {});
task('deploy:cache:warmup', function () {});
// Hooks
after('deploy:vendors', 'webpack_encore:build');
after('deploy:symlink', 'docker:restart');