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
+2 -1
View File
@@ -82,7 +82,8 @@
} }
}, },
"require-dev": { "require-dev": {
"deployer/deployer": "^6.0", "deployer/deployer": "^6.8",
"deployer/recipes": "^6.2",
"ichhabrecht/filefill": "^2.0" "ichhabrecht/filefill": "^2.0"
}, },
"config": { "config": {
Generated
+59 -1
View File
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "55d1141b531b735fa5335acff314629f", "content-hash": "bdb0e8fc25a5e98d75bea5bce07ec0bd",
"packages": [ "packages": [
{ {
"name": "christophlehmann/imageoptimizer", "name": "christophlehmann/imageoptimizer",
@@ -6515,6 +6515,64 @@
"abandoned": true, "abandoned": true,
"time": "2019-12-12T13:45:57+00:00" "time": "2019-12-12T13:45:57+00:00"
}, },
{
"name": "deployer/recipes",
"version": "6.2.2",
"source": {
"type": "git",
"url": "https://github.com/deployphp/recipes.git",
"reference": "84b3229c518c094a950e1fe785b7b8f9598770fe"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/deployphp/recipes/zipball/84b3229c518c094a950e1fe785b7b8f9598770fe",
"reference": "84b3229c518c094a950e1fe785b7b8f9598770fe",
"shasum": ""
},
"require": {
"php": "~7.0"
},
"replace": {
"deployer/recipes": "self.version"
},
"require-dev": {
"deployer/deployer": "^6.3"
},
"type": "library",
"autoload": {
"files": [
"autoload.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Anton Medvedev",
"email": "[email protected]"
}
],
"description": "3rd party deployer recipes",
"homepage": "https://github.com/deployphp/recipes",
"keywords": [
"cachetool",
"cloudflare",
"deploy",
"deployer",
"deployment",
"hipchat",
"newrelic",
"rabbit",
"recipes",
"sentry",
"slack",
"yarn"
],
"abandoned": true,
"time": "2019-06-27T06:47:18+00:00"
},
{ {
"name": "ichhabrecht/filefill", "name": "ichhabrecht/filefill",
"version": "2.0.3", "version": "2.0.3",
+4 -3
View File
@@ -1,15 +1,15 @@
<?php <?php
namespace Deployer; 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('typo3_webroot', 'public');
set('application', 'ep-reisen-typo3'); set('application', 'ep-reisen-typo3');
set('repository', '[email protected]:dreipunktnull/ep-reisen-web'); set('repository', '[email protected]:dreipunktnull/ep-reisen-web');
set('git_tty', true); set('git_tty', false);
set('ssh_type', 'native'); set('ssh_type', 'native');
set('ssh_multiplexing', true);
set('allow_anonymous_stats', false); set('allow_anonymous_stats', false);
@@ -32,6 +32,7 @@ host('185.237.67.190')
->set('http_user', 'p546128') ->set('http_user', 'p546128')
->set('writable_mode', 'chmod') ->set('writable_mode', 'chmod')
->set('bin/composer', '/usr/local/bin/composer') ->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 () { task('build', function () {