Update deploy.php
Some checks failed
Deploy to Production / deploy (push) Failing after 59s

This commit is contained in:
2025-10-06 13:09:26 -05:00
parent a7184c401c
commit 191cfb6555

View File

@@ -24,17 +24,15 @@ host('calorie')
->set('remote_user', 'chris')
->set('deploy_path', '/var/www/calorie')
->set('environment', 'Production')
->setLabels([
'env' => 'prod',
]);
->set('labels', ['env' => 'prod']);
host('test.calorie')
->set('composer_options', '--verbose --prefer-dist --no-progress --no-interaction')
->set('remote_user', 'chris')
->set('deploy_path', '/var/www/test.calorie')
->set('environment', 'Testing')
->setLabels([
'env' => 'test',
]);
->set('labels', ['env' => 'test']);
// Tasks
task('init-app', function () {