Files
smart-table/deploy/index.sh

17 lines
249 B
Bash
Raw Normal View History

2020-01-13 17:17:32 +08:00
#!/usr/bin/env sh
set -e
2020-01-31 19:39:40 +08:00
npm run example
2020-01-13 17:17:32 +08:00
2020-01-31 19:39:40 +08:00
cd examples
2020-01-13 17:17:32 +08:00
git init
git config user.name 'pengyajun'
git config user.email 'pyj92055@163.com'
git add -A
git commit -m 'deploy'
git push -f git@github.com:peng92055/smart-table.git master:gh-pages
cd -