1 Star 0 Fork 3

bobo/vuepress-theme-yur

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
deploy.sh 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
cnguu 提交于 2019-11-23 09:48 . Update: deploy script
#!/usr/bin/env bash
#
# VuePress generic deployment script
# VuePress 通用部署脚本
#
# Windows can't execute .sh file, need to install git client
# Windows 无法执行 .sh 文件,需要安装 git 客户端
#
# Author: cnguu
# Email: www@cnguu.cn
#
# Start
# 开始
set -e
# Compile
# 编译
yarn build
# Delete the dist_temp folder
# 删除 dist_temp 文件夹
rm -fr dist_temp
# Copy the dist folder to the dist_temp folder
# 复制 dist 文件夹到 dist_temp 文件夹
cp -ir dist dist_temp
# Go to the dist_temp directory
# 进入 dist_temp 目录
cd dist_temp
# Create a new CNAME file and write to the gleehub.com domain
# 新建 CNAME 文件,并写入 gleehub.com 域名
echo gleehub.com > CNAME
# Forced push to the master branch of the cnguu.github.io repository
# 强制推送到 cnguu.github.io 仓库的 master 分支
git init
git add -A
git commit -m deploy
git push -f git@github.com:cnguu/cnguu.github.io.git master
# Return to the previous directory
# 返回上一级目录
cd ../
# Delete the dist_temp folder
# 删除 dist_temp 文件夹
rm -fr dist_temp
# End
# 结束
cd -
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/baitongda/vuepress-theme-yur.git
git@gitee.com:baitongda/vuepress-theme-yur.git
baitongda
vuepress-theme-yur
vuepress-theme-yur
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385