fix: deploy command order
All checks were successful
Build / build (push) Successful in 4m37s
Build / deploy-stage (push) Successful in 2m46s
Build / switch-stage (push) Successful in 2m10s

This commit is contained in:
2025-05-23 19:13:09 +02:00
parent 4a0628e25d
commit f5dd861ef1

View File

@@ -55,16 +55,16 @@ set('rsync', [
'timeout' => 300
]);
task('typo3:extension:setup', function () {
cd('{{release_path}}');
run('{{bin/php}} bin/typo3 extension:setup');
});
task('typo3:cache:flush', function() {
cd('current');
run('{{bin/php}} bin/typo3 cache:flush');
});
task('typo3:extension:setup', function () {
cd('{{release_path}}');
run('{{bin/php}} bin/typo3 extension:setup');
});
task('typo3:cache:warmup', function() {
cd('current');
run('{{bin/php}} bin/typo3 cache:warmup');