13 lines
166 B
Bash
Executable File
13 lines
166 B
Bash
Executable File
set -e
|
|
|
|
npm run docs:build
|
|
|
|
cd docs/.vuepress/dist
|
|
|
|
git init
|
|
git add -A
|
|
git commit -m 'deploy'
|
|
|
|
git push -f git@github.com:Akryum/vue-apollo.git master:gh-pages
|
|
|
|
cd - |