From 15eec69af8064b109150636be8e6ee6adbbeb063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Sun, 10 May 2026 15:30:07 +0200 Subject: [PATCH] chore: update deployer config to be run on the host --- deploy.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy.php b/deploy.php index 997b0cf..26005d2 100644 --- a/deploy.php +++ b/deploy.php @@ -118,7 +118,8 @@ task('deploy:stop-workers', function () { }); task('deploy:assets', function () { - runLocally('npm i && npm run build'); + runLocally('ddev exec npm ci'); + runLocally('ddev exec npm run build'); }); after('deploy:failed', 'deploy:unlock');