This repository was archived by the owner on Apr 28, 2026. It is now read-only.
doc: update README for notes #93
This file contains hidden or 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
| name: Publish docs via GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| name: Deploy docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout master | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: master | |
| - name: Install MkDocs | |
| run: | | |
| echo 'mkdocs' > requirements.txt | |
| echo 'pymdown-extensions' >> requirements.txt | |
| - name: Deploy docs | |
| uses: mhausenblas/mkdocs-deploy-gh-pages@nomaterial | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CONFIG_FILE: docs/mkdocs.yml | |
| # GITHUB_DOMAIN: github.myenterprise.com |