From 02ea381871cfdb5fa275cbec8073ebf351bcc5a7 Mon Sep 17 00:00:00 2001 From: Adrian Hopek Date: Mon, 4 Apr 2022 08:26:43 +0200 Subject: [PATCH] change order of release phase commands --- Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile b/Procfile index 6cf46a6..2d5c592 100644 --- a/Procfile +++ b/Procfile @@ -1,3 +1,3 @@ web: vendor/bin/heroku-php-nginx -C environment/prod/nginx.conf public/ -release: php artisan migrate --force && php artisan cache:clear && php artisan config:cache +release: php artisan config:cache && php artisan route:cache && php artisan migrate --force worker: php artisan queue:work