add debug to deployer

This commit is contained in:
Dominik Polakovics Polakovics 2026-02-13 12:54:39 +01:00
parent 0428ffc01e
commit 3fc302acfd
3 changed files with 2 additions and 7 deletions

View file

@ -73,5 +73,5 @@ jobs:
uses: deployphp/action@v1
with:
deployer-binary: "./bin/dep"
dep: --file=${{ inputs.deployer_file }} release:create ${{ inputs.server }}
dep: -v --file=${{ inputs.deployer_file }} release:create ${{ inputs.server }}
private-key: ${{ secrets.ssh_key }}

View file

@ -68,5 +68,5 @@ jobs:
uses: deployphp/action@v1
with:
deployer-binary: "./bin/dep"
dep: --file=${{ inputs.deployer_file }} release:switch ${{ inputs.server }}
dep: -v --file=${{ inputs.deployer_file }} release:switch ${{ inputs.server }}
private-key: ${{ secrets.ssh_key }}

View file

@ -141,11 +141,6 @@ task('typo3:language:update', function () {
})->desc('Update TYPO3 language files');
// Helper to get correct path (release during deploy, current after switch)
set('release_or_current_path', function () {
return test('[ -d {{release_path}} ]') ? get('release_path') : 'current';
});
// =============================================================================
// PHP-FPM Reload (for NixOS infrastructure)
// =============================================================================