You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
362 B

  1. name: Publish docs via GitHub Pages
  2. on:
  3. push:
  4. branches:
  5. - master
  6. jobs:
  7. build:
  8. name: Deploy docs
  9. runs-on: ubuntu-latest
  10. steps:
  11. - name: Checkout main
  12. uses: actions/checkout@v2
  13. - name: Deploy docs
  14. uses: mhausenblas/mkdocs-deploy-gh-pages@master
  15. env:
  16. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}