无法弄清楚将 Github 用作 VuePress 站点源代码控制并将其部署到 Github Pages的工作流程。
当我第一次运行deploy.sh
时,它在命令周围给了我一个 Github 证书错误,init
并且没有初始化新的 repo(我已经有一个 repo 设置,所以不确定是否需要init
命令deploy.sh
。随后运行deploy.sh
导致没有错误。
**问题:**不幸的是,当我访问我的 Github Pages 站点时,它没有使用 VuePress 模板。
我觉得我有:
- 文件夹结构错误 -base
设置不正确config.js
- 相关文件夹不正确deploy.sh
有人可以关注这一点并提供一些反馈吗?谢谢你。
供你参考
本地机器的文件夹结构:
user@system:~/powerDocs$ tree
.
├── deploy.sh
├── docs
│ └── README.md
├── node_modules
│ └── yarn
│ ├── bin
│ │ ├── yarn
│ │ ├── yarn.cmd
│ │ ├── yarn.js
│ │ ├── yarnpkg
│ │ └── yarnpkg.cmd
│ ├── lib
│ │ ├── cli.js
│ │ └── v8-compile-cache.js
│ ├── LICENSE
│ ├── package.json
│ └── README.md
├── package.json
├── package-lock.json
└── README.md
5 directories, 15 files
内容deploy.sh
:
#!/usr/bin/env sh
# abort on errors
set -e
# build
vuepress build
# navigate into the build output directory
cd docs/.vuepress/dist
# if you are deploying to a custom domain
# echo 'www.example.com' > CNAME
git init
git add -A
git commit -m 'deploy'
# if you are deploying to https://<USERNAME>.github.io
# git push -f git@github.com:SeaDude/SeaDude.github.io.git master
# if you are deploying to https://<USERNAME>.github.io/<REPO>
git push -f git@github.com:SeaDude/powerDocs.git master:gh-pages
cd -
我用 .deploy.sh 制作了可执行文件chmod +x deploy.sh
。运行./deploy.sh
给我以下输出:
user@system:~/powerDocs$ ./deploy.sh
WAIT Extracting site metadata...
[12:05:53 PM] Compiling Client
[12:05:53 PM] Compiling Server
(node:15590) DeprecationWarning: Tapable.plugin is deprecated. Use new API on `.hooks` instead
[12:05:57 PM] Compiled Server in 3s
[12:05:59 PM] Compiled Client in 6s
WAIT Rendering static HTML...
DONE Success! Generated static files in .vuepress/dist.
Reinitialized existing Git repository in /home/powerDocs/docs/.vuepress/dist/.git/
On branch master
nothing to commit, working directory clean
以下是 的内容config.js
:
module.exports = {
title: "PowerDocs",
description: "Where functions go to frolic.",
base: "/powerDocs/",
themeConfig: {
nav: [
{ text: "Home", link: "/" }
],
sidebar: [
'/'
]
}
};