我试图在我的github上部署英雄。(https://github.com/tsungruihon/tsungruihon.github.io)。我已经遵循了hexo教程和github教程。但是当我在浏览器上输入tsungruihon.github.io
时,它显示了There isn't a GitHub Pages site here.
这是我的blog/_config.yml
url: http://petertsengruihon.com
root: /
permalink: :year/:month/:day/:title/
permalink_defaults:
deploy:
type: git
repo: [email protected]:tsungruihon/tsungruihon.github.io.git
branch: master
我的CNAME文件如下:
petertsengruihon.com
请给我一些提示。
以下是我如何做以及如何自动化该过程:
$ npm install hexo-deployer-git --save
_config.yml
中设置部署程序# Deployment
deploy:
type: git
repo: https://github.com/tsungruihon/tsungruihon.github.io
$ hexo clean
然后$ hexo generate
$ hexo deploy
此命令将自动部署您的博客。
奖励:将以下脚本添加到package.json中
"scripts": {
"deploy": "hexo clean && hexo generate && hexo deploy",
},
然后,您只需键入npm run deploy
即可生成和部署您的站点。
看起来您的设置都是正确的,github可能需要一些时间才能在该URL上显示您的网站
目前您的回购只有一个自述文件:
http://github.com/tsungruihon/tsungruihon.github.io/tree/cf22320
如果要构建页面,可以从...构建页面开始。