新建文件 deploy.sh
在里面写上命令
rm -rf dist &&
yarn build &&
cd dist &&
git init &&
git add . &&
git commit -m 'update' &&
git branch -M main &&git remote add origin git@github.com:lushengqin/lulu-UI.git &&
git push -f -u origin main &&
cd -
echo https://lushengqin.github.io/lulu-UI/index.html
网友评论