testing mermaid #28
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: Publish docs via GitHub Pages | |
on: | |
push: | |
branches: | |
- doc/addlinkml | |
jobs: | |
build: | |
name: Deploy docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install the required python packages | |
run: python -m pip install linkml mkdocs-material mkdocs-mermaid2-plugin | |
- name: Other installations | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential git wget curl | |
- name: Generating docs | |
run: | | |
gen-doc -d docs/schema/doc-linkml-autogen linkml-schema/reproschema.yaml | |
gen-erdiagram linkml-schema/reproschema.yaml > docs/schema/erdiagram-autogen.md | |
- name: Build MkDocs site | |
run: mkdocs build | |
- name: Deploy docs | |
uses: mhausenblas/mkdocs-deploy-gh-pages@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |