docs.yml 422 B

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