Update of "Next chapter for utPLSQL" #68
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
| # Based on: https://blog.elmah.io/deploying-a-mkdocs-documentation-site-with-github-actions/ | |
| name: build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.x | |
| - name: Setup MkDocs | |
| run: | | |
| pip install mkdocs-material | |
| pip install mkdocs-git-revision-date-localized-plugin | |
| pip install mkdocs-include-markdown-plugin | |
| pip install mike | |
| pip install mkdocs-git-committers-plugin-2 | |
| - name: Build website | |
| run: mkdocs gh-deploy --verbose |