1 Star 0 Fork 78

爱上星云/vuepress-theme-vdoing

forked from Evan/vuepress-theme-vdoing 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
deploy.sh 573 Bytes
一键复制 编辑 原始数据 按行查看 历史
Evan 提交于 2022-07-11 10:26 . deploy: 优化部署脚本
#!/usr/bin/env sh
# 确保脚本抛出遇到的错误
set -e
push_addr=`git remote get-url --push origin` # git提交地址,也可以手动设置,比如:push_addr=git@github.com:xugaoyi/vuepress-theme-vdoing.git
commit_info=`git describe --all --always --long`
dist_path=docs/.vuepress/dist # 打包生成的文件夹路径
push_branch=gh-pages # 推送的分支
# 生成静态文件
npm run build
# 进入生成的文件夹
cd $dist_path
git init
git add -A
git commit -m "deploy, $commit_info"
git push -f $push_addr HEAD:$push_branch
cd -
rm -rf $dist_path
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zlichao/vuepress-theme-vdoing.git
git@gitee.com:zlichao/vuepress-theme-vdoing.git
zlichao
vuepress-theme-vdoing
vuepress-theme-vdoing
master

搜索帮助