remove deployer 6.x leftovers (#3995)

since deployer 7.x the `success` task is named `deploy:success`

Co-authored-by: Markus Staab <47448731+clxmstaab@users.noreply.github.com>
This commit is contained in:
Markus Staab 2025-01-10 15:41:23 +01:00 committed by GitHub
parent 7b2c0da617
commit 2f6c341805
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ before('deploy', 'chatwork:notify');
If you want to notify about successful end of deployment add this too:
```php
after('success', 'chatwork:notify:success');
after('deploy:success', 'chatwork:notify:success');
```
If you want to notify about failed deployment add this too:

View File

@ -74,7 +74,7 @@ before('deploy', 'chatwork:notify');
```
If you want to notify about successful end of deployment add this too:
```php
after('success', 'chatwork:notify:success');
after('deploy:success', 'chatwork:notify:success');
```
If you want to notify about failed deployment add this too:
```php