7 lines
179 B
Bash
Executable file
7 lines
179 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
rm -rf node_modules/gh-pages/.cache
|
|
rm -rf docs/_site
|
|
cd docs
|
|
JEKYLL_ENV=production bundle exec jekyll build
|
|
gh-pages --dist _site --branch gh-pages --silent
|