curder / deployphp-recipes
Deployer Recipes for DingTalk Notification.
Installs: 3 378
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- curder/deployphp-recipes: 1.0.3
Requires (Dev)
- deployer/deployer: ^6.3
README
使用
本项目是Deployer的一个部署通知,所以使用之前需要您安装好deployer/deployer(建议您完成一次成功部署之后再来配置)。
composer require curder/deployphp-recipes --dev # 当前项目安装
在您的部署配置文件deploy.php
文件中添加文件的引入:
require __DIR__.'/vendor/curder/deployphp-recipes/dingtalk.php';
配置
修改本地部署文件添加如下语句:
// config access token value
set('dingtalk_access_token', '');
// DingTalk text
set('dingtalk_text', '_{{user}}_正在部署**{{ target }}**, 从`{{branch}}`分支部署到*{{target}}*');
set('dingtalk_failure_text', '**{{ branch }}**部署到*{{target}}*失败');
set('dingtalk_success_text', '**{{ branch }}**部署到*{{target}}*成功');
// Handle notify
after('deploy:info', 'dingtalk:notify');
after('success', 'dingtalk:notify:success');
after('deploy:failed', 'dingtalk:notify:failure');
获取对应通知到的钉钉群的token值,获取方式通过下面的网址中获取。 将上述代码中的domain.com换成您自己可辨识的部署目标网址即可。
更多第三方插件【参考这里】