deploy.sh 572 B

1234567891011121314151617181920212223242526
  1. #!/usr/bin/env sh
  2. # 确保脚本抛出遇到的错误
  3. set -e
  4. # 生成静态文件
  5. npm run build
  6. # 进入生成的文件夹
  7. cd b2c
  8. # 如果是发布到自定义域名
  9. # echo 'www.example.com' > CNAME
  10. git init
  11. git add -A
  12. git commit -m 'deploy'
  13. # 如果发布到 https://<USERNAME>.github.io
  14. # git push -f git@github.com:allpayx/allpayx.github.io.git master
  15. git push -f https://${access_token}@github.com/allpayx/allpayx.github.io.git master
  16. # 如果发布到 https://<USERNAME>.github.io/<REPO>
  17. # git push -f git@github.com:<USERNAME>/<REPO>.git master:gh-pages
  18. cd -