Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
services
t3o sites
extensions.typo3.org
extensions.typo3.org
Commits
cae2b25c
Commit
cae2b25c
authored
Mar 22, 2017
by
Thomas Löffler
Browse files
[TASK] Adds typo3_console calls to deployer
parent
4548c1d8
Pipeline
#188
passed with stages
in 1 minute and 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci/deployer/deploy.php
View file @
cae2b25c
...
...
@@ -52,6 +52,13 @@ set('rsync_src', '/src/');
set
(
'keep_releases'
,
10
);
serverList
(
'/src/.gitlab-ci/deployer/servers.yml'
);
task
(
'typo3'
,
function
()
{
run
(
'cd {{release_path}} && bin/typo3cms database:updateschema'
);
run
(
'cd {{release_path}} && bin/typo3cms language:update'
);
run
(
'cd {{release_path}} && bin/typo3cms install:fixfolderstructure'
);
run
(
'cd {{release_path}} && bin/typo3cms cache:flush'
);
});
task
(
'deploy'
,
[
'deploy:prepare'
,
'deploy:release'
,
...
...
@@ -60,5 +67,6 @@ task('deploy', [
'deploy:shared'
,
'deploy:writable'
,
'deploy:symlink'
,
'cleanup'
'cleanup'
,
'typo3'
]);
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment