自動構建的deploy.sh

#!/usr/bin/env sh

# 當發生錯誤時停止腳本
set -e

# 構建
npm run 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:<USERNAME>/<REPO>.git master:gh-pages

cd -
相關文章
相關標籤/搜索