Former-commit-id: 9aa2487c1a5dd2a6b347268355d27d60937b1a15 [formerly 9aa2487c1a5dd2a6b347268355d27d60937b1a15 [formerly 9aa2487c1a5dd2a6b347268355d27d60937b1a15 [formerly 9aa2487c1a5dd2a6b347268355d27d60937b1a15 [formerly 4fa88c73d67fe113cdb9d5038baa61b9a2c50ac7 [formerly c1e1986deb2c50ecfff8f94c7e0af65b83777426]]]]] Former-commit-id: 9ebe6124d8e9c0c91b8bbe32aff66f3c1892ba25 Former-commit-id: b32951098db0ae68c5b37e50bf7aedcc7c27c66e Former-commit-id: f1577d9b650588c3a9d3083568face8219d867a3 [formerly e0a70087dcc7303505a1a21579dcbc313e953e22] Former-commit-id: 1066bacc4e3b7211be367b7514994cbba041459f Former-commit-id: c29f02c0c65173cf9b260c9c4e73a65e99a692ab Former-commit-id: 9d2a3a8f99dfb8bdff9b665c45de5f0d2de9a7db Former-commit-id: 41ac0283e997d7e392459d8d86544c822f5ac148 Former-commit-id: c59d4019d3b1f5454394cae4587d6653b616a978
27 lines
571 B
Bash
Executable File
27 lines
571 B
Bash
Executable File
#!/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 git@gitee.com:fairyever/d2-admin-preview-dev.git master
|
|
|
|
cd -
|
|
|
|
echo "publish to https://fairyever.gitee.io/d2-admin-preview-dev/#/index" |