Gitee碼雲經過WebHooks實現自動同步代碼部署

 

 

 

碼雲(Gitee)的WebHooks功能,能夠在咱們每次提交代碼後,向咱們設定的地址post一個更新的json信息,這樣咱們就能夠根據該信息,來自動拉去咱們的代碼,實現自動同步功能.php

第一步 配置WebHooks

 

第二步 服務器軟件配置

一、nginx用戶設置成wwwnginx

二、php用戶設置成wwwgit

三、代碼目錄設置成www   chown -R www:www 代碼目錄web

四、修改代碼目錄下.git文件夾下的config文件裏的url地址爲   url = https://gitee賬號:gitee密碼@gitee.com/chishenme/gitee倉庫名.gitjson

 

第三步 服務器腳本配置,在代碼目錄裏寫入更新代碼的腳本php

<?php

$requestBody = file_get_contents("php://input");
if (empty($requestBody)) {
die('send fail');
}
$content = json_decode($requestBody, true);

if ($content['ref'] == 'refs/heads/master' && $content['total_commits_count'] > 0 && $content['password'] == 'gitee上設置的webhook密碼') {
exec("cd 代碼目錄 && git pull origin master 2<&1", $output, $return);
$res_log = PHP_EOL . '----------------------------------------------------------------------------------------------------' . PHP_EOL;
$res_log .= $content['user_name'] . ' 在' . date('Y-m-d H:i:s') . '向' . $content['repository']['name'] . '項目的' . $content['ref'] . '分支push了' . $content['total_commits_count'] . '個commit:';
$res_log .= PHP_EOL . "pull start --------" . PHP_EOL;
$res_log .= '$output:' . var_export($output, true) . PHP_EOL . '$return:' . var_export($return, true) . PHP_EOL;
$res_log .= PHP_EOL . "pull end --------" . PHP_EOL;
//$res_log .= var_export($requestBody, true);

file_put_contents(git_webhook.log日誌地址, $res_log, FILE_APPEND);//寫入日誌到log文件中
}
相關文章
相關標籤/搜索