其实就是同时部署到自己的服务器和Github Pages(
首先,确保单独部署到 Github Pages 或自己服务器是正常的,如果没有可以参考以下链接:

接着打开_config.yml修改deploy:

1
2
3
4
5
6
7
deploy:
- type: git
repository: git@<ip>:<dict>
branch: master
- type: git
repository: git@github.com:<name>/<name>.github.io.git
branch: main

执行hexo d就完成了。