8 lines
153 B
Bash
Executable file
8 lines
153 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
rm -rf node_modules/gh-pages/.cache
|
|
|
|
cd ./docs
|
|
bundle install
|
|
bundle exec jekyll build
|
|
gh-pages --dist docs/_site --branch gh-pages
|