宝塔+gitee 自动部署
Posted 南路
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了宝塔+gitee 自动部署相关的知识,希望对你有一定的参考价值。
服务器生成 密钥
ssh-keygen -t rsa -C "xxxx@xxxx.com"
生成在 root/.ssh/目录
仓库 - 管理 - 添加部署公钥
面板上安装webhook插件
#!/bin/bash
echo ""
#输出当前时间
date --date=\'0 days ago\' "+%Y-%m-%d %H:%M:%S"
echo "Start"
#判断宝塔WebHook参数是否存在
if [ ! -n "$1" ];
then
echo "param参数错误"
echo "End"
exit
fi
#git项目路径
gitPath="/www/wwwroot/ceshi.xxxxxx.com"
#git 网址
gitHttp="git@gitee.com:xxxxxxx/xxxxxx.git"
echo "Web站点路径:$gitPath"
#判断项目路径是否存在
if [ -d "$gitPath" ]; then
cd $gitPath
#判断是否存在git目录
if [ ! -d ".git" ]; then
echo "在该目录下克隆 git"
git clone $gitHttp gittemp
mv gittemp/.git .
rm -rf gittemp
fi
#拉取最新的项目文件
git reset --hard origin/master
git pull
#设置目录权限
chown -R www:www $gitPath
echo "Success End"
exit
else
echo "该项目路径不存在"
echo "End"
exit
fi
gitee仓库里设置webhooks,添加
http://xxxxx:8888/hook?access...
事件选推送
以上是关于宝塔+gitee 自动部署的主要内容,如果未能解决你的问题,请参考以下文章
编程技巧│Gitee 的 WebHooks 实现代码自动化部署
编程技巧│Gitee 的 WebHooks 实现代码自动化部署