From b52d2065540556695324601e6ad647a63c692075 Mon Sep 17 00:00:00 2001 From: Adrian Hopek Date: Mon, 4 Apr 2022 08:39:25 +0200 Subject: [PATCH] change order of release phase commands (#104) --- 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