加入 Gitee
與超過 1200 萬 開發者一起發現、參與優秀開源項目,私有倉庫也完全免費 :)
免費加入
文件
該倉庫未聲明開源許可證文件(LICENSE),使用請關注具體項目描述及其代碼上游依賴。
克隆/下載
deploy.sh 478 Bytes
一鍵複製 編輯 原始數據 按行查看 歷史
Nevermore98 提交於 2021-07-31 19:57 . 部署到 vue-account-website
#!/usr/bin/env sh
# 当发生错误时中止脚本
set -e
# 构建
yarn build
# cd 到构建输出的目录下
cd dist
# 部署到自定义域域名
# echo 'www.example.com' > CNAME
git init
git add -A
git commit -m 'deploy'
# 部署到 https://<USERNAME>.github.io
# git push -f git@github.com:<USERNAME>/<USERNAME>.github.io.git master
# 部署到 https://<USERNAME>.github.io/<REPO>
git push -f git@github.com:Nevermore98/vue-account-website.git master:gh-pages
cd -
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化