docs_push.sh 330 B

1234567891011121314
  1. #!/bin/bash
  2. # Copyright (c) Jupyter Development Team.
  3. # Distributed under the terms of the Modified BSD License.
  4. jlpm
  5. jlpm build:packages
  6. jlpm docs
  7. cd docs/api
  8. git init
  9. touch .nojekyll # disable jekyll
  10. git add .
  11. git commit -m "Deploy to GitHub Pages"
  12. git push --force "https://github.com/jupyterlab/jupyterlab" master:gh-pages