Adjust deployer config for GitHub actions

This commit is contained in:
Björn Fromme
2021-03-04 17:07:54 +01:00
parent 156f7e25d4
commit 803fc4c841
3 changed files with 65 additions and 5 deletions
+4 -3
View File
@@ -1,15 +1,15 @@
<?php
namespace Deployer;
require 'recipe/typo3.php';
require 'vendor/deployer/deployer/recipe/typo3.php';
require 'vendor/deployer/recipes/recipe/cachetool.php';
set('typo3_webroot', 'public');
set('application', 'ep-reisen-typo3');
set('repository', '[email protected]:dreipunktnull/ep-reisen-web');
set('git_tty', true);
set('git_tty', false);
set('ssh_type', 'native');
set('ssh_multiplexing', true);
set('allow_anonymous_stats', false);
@@ -32,6 +32,7 @@ host('185.237.67.190')
->set('http_user', 'p546128')
->set('writable_mode', 'chmod')
->set('bin/composer', '/usr/local/bin/composer')
->set('cachetool_args', '--web --web-path={{release_path}}/public/ --web-url=https://www.ep-reisen.de')
;
task('build', function () {