docs.yml 381 B

12345678910111213141516171819
  1. name: Packages Docs
  2. on:
  3. push:
  4. branches:
  5. - master
  6. - develop
  7. jobs:
  8. build-test-deploy:
  9. runs-on: sphinxdoc/sphinx
  10. steps:
  11. - name: Checkout
  12. uses: actions/checkout@v2
  13. - run: cd docs && make html
  14. - name: Deploy
  15. uses: crazy-max/ghaction-github-pages@v1
  16. with:
  17. target_branch: gh-pages
  18. build_dir: build