fes.js/packages/fes-template/deploy.sh
harrywan 0128b983bc update README:
1. 添加体验链接

add Changelog
2020-09-25 17:59:16 +08:00

26 lines
494 B
Bash

#!/usr/bin/env sh
# 确保脚本抛出遇到的错误
set -e
# 生成静态文件
npm run build
# 进入生成的文件夹
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 https://gitee.com/WeBank/fes-pro.git master:gh-pages
cd -