mirror of
https://github.com/krisk/Fuse.git
synced 2025-12-08 21:26:15 +00:00
19 lines
268 B
Bash
Executable File
19 lines
268 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# abort on errors
|
|
set -e
|
|
|
|
# build
|
|
npm run docs:build
|
|
|
|
# navigate into the build output directory
|
|
cd docs/.vuepress/dist
|
|
|
|
echo 'fusejs.io' > CNAME
|
|
|
|
git init
|
|
git add -A
|
|
git commit -m 'deploy'
|
|
|
|
git push -f git@github.com:krisk/fuse.git master:gh-pages
|