Skip to content

Commit b526cf6

Browse files
authored
Fix/typo3 missing task (#4116)
* Replace final tasks with deploy:publish which includes the missing deploy:symlink task. * update doc
1 parent 11e97a2 commit b526cf6

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

docs/recipe/typo3.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ The [deploy](#deploy) task of **TYPO3** consists of:
4040
* [typo3:extension:setup](/docs/recipe/typo3.md#typo3-extension-setup) – TYPO3 - Set up all extensions
4141
* [typo3:language:update](/docs/recipe/typo3.md#typo3-language-update) – TYPO3 - Update the language files of all activated extensions
4242
* [typo3:cache:flush](/docs/recipe/typo3.md#typo3-cache-flush) – TYPO3 - Clear all caches
43-
* [deploy:unlock](/docs/recipe/deploy/lock.md#deploy-unlock) – Unlocks deploy
44-
* [deploy:cleanup](/docs/recipe/deploy/cleanup.md#deploy-cleanup) – Cleanup old releases
45-
* [deploy:success](/docs/recipe/common.md#deploy-success) – Deploys your project
43+
* [deploy:publish](/docs/recipe/common.md#deploy-publish) – Publishes the release
44+
* [deploy:symlink](/docs/recipe/deploy/symlink.md#deploy-symlink) – Creates symlink to release
45+
* [deploy:unlock](/docs/recipe/deploy/lock.md#deploy-unlock) – Unlocks deploy
46+
* [deploy:cleanup](/docs/recipe/deploy/cleanup.md#deploy-cleanup) – Cleanup old releases
47+
* [deploy:success](/docs/recipe/common.md#deploy-success) – Deploys your project
4648

4749

4850
The typo3 recipe is based on the [common](/docs/recipe/common.md) recipe.
@@ -269,7 +271,7 @@ Main deploy task for TYPO3.
269271
8. Run extension setup
270272
9. Update language files
271273
10. Flush caches
272-
11. Unlock and clean up
274+
11. Publish ready release
273275

274276

275277
This task is group task which contains next tasks:
@@ -285,8 +287,10 @@ This task is group task which contains next tasks:
285287
* [typo3:extension:setup](/docs/recipe/typo3.md#typo3-extension-setup)
286288
* [typo3:language:update](/docs/recipe/typo3.md#typo3-language-update)
287289
* [typo3:cache:flush](/docs/recipe/typo3.md#typo3-cache-flush)
288-
* [deploy:unlock](/docs/recipe/deploy/lock.md#deploy-unlock)
289-
* [deploy:cleanup](/docs/recipe/deploy/cleanup.md#deploy-cleanup)
290-
* [deploy:success](/docs/recipe/common.md#deploy-success)
290+
* [deploy:publish](/docs/recipe/common.md#deploy-publish)
291+
* [deploy:symlink](/docs/recipe/deploy/symlink.md#deploy-symlink)
292+
* [deploy:unlock](/docs/recipe/deploy/lock.md#deploy-unlock)
293+
* [deploy:cleanup](/docs/recipe/deploy/cleanup.md#deploy-cleanup)
294+
* [deploy:success](/docs/recipe/common.md#deploy-success)
291295

292296

recipe/typo3.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,7 @@
213213
'typo3:extension:setup',
214214
'typo3:language:update',
215215
'typo3:cache:flush',
216-
'deploy:unlock',
217-
'deploy:cleanup',
218-
'deploy:success',
216+
'deploy:publish',
219217
]);
220218

221219
after('deploy:failed', 'deploy:unlock');

0 commit comments

Comments
 (0)