deploy.sh 752 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/env sh
  2. # Replace packaging path
  3. sed -i "s#VITE_PUBLIC_PATH = /#VITE_PUBLIC_PATH = /vue-pure-admin/#g" $(pwd)/.env.production
  4. # Make sure the script throws the error encountered
  5. set -e
  6. pnpm build
  7. cd dist
  8. touch README.md .nojekyll
  9. # deploy to github
  10. if [ -z "$GITHUB_TOKEN" ]; then
  11. msg='deploy'
  12. githubUrl=git@github.com:xiaoxian521/vue-pure-admin.git
  13. else
  14. msg='ci: Automatic deployment from github actions'
  15. githubUrl=https://xiaoxian521:${GITHUB_TOKEN}@github.com/xiaoxian521/vue-pure-admin.git
  16. git config --global user.name "xiaoxian521"
  17. git config --global user.email "1923740402@qq.com"
  18. fi
  19. git init
  20. git add -A
  21. git commit -m "${msg}"
  22. # Push to github gh-pages branch
  23. git push -f $githubUrl master:gh-pages
  24. cd -
  25. rm -rf dist