4 Commits

Author SHA1 Message Date
242feb8d1d fix: deploy pipeline
All checks were successful
Build / build (push) Successful in 1m51s
Build / deploy-stage (push) Successful in 3m50s
Build / switch-stage (push) Successful in 1m45s
Build / deploy-production (push) Successful in 3m20s
Release / switch-production (push) Successful in 1m4s
2025-12-03 17:45:22 +01:00
6deaf37cd2 fix: deploy pipeline
Some checks failed
Build / build (push) Successful in 1m52s
Build / deploy-production (push) Failing after 1m30s
Build / deploy-stage (push) Successful in 2m4s
Build / switch-stage (push) Failing after 1m5s
2025-12-03 17:36:40 +01:00
5a1dc2c17e fix: deploy pipeline
Some checks failed
Build / build (push) Successful in 2m33s
Build / deploy-stage (push) Failing after 3m50s
Build / switch-stage (push) Has been skipped
Build / deploy-production (push) Failing after 3m51s
2025-12-03 17:28:21 +01:00
d0c9067d06 feat: update typo3
Some checks failed
Build / build (push) Successful in 1m7s
Build / deploy-production (push) Failing after 40s
Build / deploy-stage (push) Failing after 1m3s
Build / switch-stage (push) Has been skipped
2025-12-03 17:11:07 +01:00
3 changed files with 9005 additions and 4 deletions

1
.gitignore vendored
View File

@@ -17,4 +17,3 @@ nbproject
/public /public
/packages/base/Resources/Public/Css /packages/base/Resources/Public/Css
/node_modules /node_modules
composer.lock

View File

@@ -56,7 +56,7 @@ set('rsync', [
]); ]);
task('typo3:extension:setup', function () { task('typo3:extension:setup', function () {
cd('{{release_path}}'); cd('current');
run('{{bin/php}} bin/typo3 extension:setup'); run('{{bin/php}} bin/typo3 extension:setup');
}); });
@@ -94,7 +94,6 @@ task('release:create', [
'deploy:vendors', 'deploy:vendors',
'deploy:shared', 'deploy:shared',
'deploy:writable', 'deploy:writable',
'typo3:extension:setup',
'deploy:unlock', 'deploy:unlock',
'deploy:success' 'deploy:success'
]); ]);
@@ -104,6 +103,7 @@ task('release:switch', [
'php:reload', 'php:reload',
'php:reload-prod', 'php:reload-prod',
'typo3:cache:flush', 'typo3:cache:flush',
'typo3:extension:setup',
'typo3:language:update', 'typo3:language:update',
'typo3:cache:warmup', 'typo3:cache:warmup',
'deploy:unlock', 'deploy:unlock',
@@ -117,11 +117,11 @@ task('deploy', [
'deploy:vendors', 'deploy:vendors',
'deploy:shared', 'deploy:shared',
'deploy:writable', 'deploy:writable',
'typo3:cache:flush',
'typo3:extension:setup', 'typo3:extension:setup',
'deploy:symlink', 'deploy:symlink',
'php:reload', 'php:reload',
'php:reload-prod', 'php:reload-prod',
'typo3:cache:flush',
'typo3:language:update', 'typo3:language:update',
'typo3:cache:warmup', 'typo3:cache:warmup',
'deploy:unlock', 'deploy:unlock',

9002
composer.lock generated Normal file

File diff suppressed because it is too large Load Diff