AI正在绞尽脑汁想思路ING···
BiのAI摘要
HunYuan-Lite

1panel没有宝塔的webhook功能,之前一直使用在服务器上建立裸仓库,直接推送到服务器的方法。现在找到一种新的方法。

建立GitHub仓库

因为服务器部署在香港,可以直连GitHub,国内可以使用gitee或者GitHub镜像加速。

  1. 在本地安装git

  2. 打开git bash配置用户名和邮箱

    1
    2
    git config --global user.name "yourname"
    git config --global user.email "youremail"

    可以使用 git config –list查看当前所有的配置

  3. 在github上创建自己的账号(在自己的电脑和服务器上)

  4. 创建SSH Key
    a:打开Git Bash,输入pwd查看当前路径
    b.输入ssh-keygen -t rsa –C “youremail@example.com”
    (输入完毕后程序同时要求输入一个密语字符串(passphrase),空表示没有密语。接着会让输入2次口令(password),空表示没有口令。3次回车即可完成当前步骤)

    924058.webp
  5. 在GitHub上传自己的公钥

    946620.webp
  6. 新建一个私有仓库

上传文件到仓库

在自己hexo根目录下使用powershell,输入git init,然后git push到之前自己新建的仓库。

创建Action

创建Action

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: 自动部署

on:
push:
branches:
- main

release:
types:
- published

workflow_dispatch:

env:
TZ: Asia/Shanghai

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: 检查分支
uses: actions/checkout@v3
with:
ref: main

- name: 缓存项目 npm
id: cache-node-modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-nodeModules-${{ hashFiles('package-lock.json') }}-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-nodeModules-

- name: 安装 Node
uses: actions/setup-node@v3
with:
node-version: "20.x"

- name: 安装 Hexo
run: |
npm install hexo-cli --global

- name: 安装依赖
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: |
npm install

- name: 清理文件树
run: |
npm run clean

- name: 生成静态文件并压缩
run: |
npm run build

- name: 部署
run: |
cd ./public
git init
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git add .
git commit -m "${{ github.event.head_commit.message }}··[$(date +"%Z %Y-%m-%d %A %H:%M:%S")]"
git push --force --quiet "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git" master:page
- name: 服务器执行拉取命令
uses: appleboy/ssh-action@v1
with:
host: ${{ secrets.SERVER_IP }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
port: ${{ secrets.PORT }}
script: |
cd /opt/1panel/apps/openresty/openresty/www/sites/blog.liushen.fun/index/
git config --global --add safe.directory "$(pwd)"
git fetch --all --depth=1
git reset --hard origin/main
git pull --depth=1
echo "✅ 已拉取 page 分支最新内容"

环境变量

此次添加变量较多,有:SERVER_IPUSERNAMEPASSPHRASEKEYPORT五个变量,如下:

SERVER_IP:服务器IP
USERNAME:SSH链接用户名,一般为root
PASSPHRASE:密钥密码,用来提升强度用
KEY:密钥(私钥)
PORT:SSH登录端口,一般为22

测试

运行一下这个Action无报错即可。