-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Omit importer dependencies in docs-site workflow (#501)
Merge pull request 501
- Loading branch information
Showing
2 changed files
with
36 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/bash | ||
|
||
export DOCS_DEPLOY=true | ||
buildopts="-s docs -d docs/_site" | ||
|
||
if [[ $# -lt 1 ]]; then | ||
bundle exec jekyll build $buildopts | ||
else | ||
bundle exec jekyll "$@" $buildopts | ||
fi |