fix(nalsd): final proofread #316
This file contains 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: github pages | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "src/**" | |
- mkdocs.yaml | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: GitHub Pages | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# let git-revision-date-localized-plugin collect correctly | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
pip install mkdocs | |
mkdocs --version | |
pip install mkdocs-material | |
pip install mkdocs-git-revision-date-localized-plugin | |
pip install mkdocs-mermaid2-plugin | |
pip install mkdocs-blogging-plugin | |
pip install mdx_truly_sane_lists | |
pip install -e lib | |
- name: Build | |
if: ${{ github.ref != 'refs/heads/master' }} | |
run: mkdocs build | |
- name: Deploy | |
if: ${{ github.ref == 'refs/heads/master' }} | |
run: mkdocs gh-deploy |