Skip to content

Merge pull request #452 from monarch-initiative/include-mesh-to-chebi… #114

Merge pull request #452 from monarch-initiative/include-mesh-to-chebi…

Merge pull request #452 from monarch-initiative/include-mesh-to-chebi… #114

Workflow file for this run

name: Build and Deploy Docs to GitHub Pages
on:
push:
branches: [ main ]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
with:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Set up Python 3
uses: actions/setup-python@main
with:
python-version: '3.11'
- name: Install Poetry
uses: snok/install-poetry@main
- name: Install Dependencies
run: poetry install
- name: Build and Deploy Documentation.
run: |
make docs
poetry run mkdocs gh-deploy --force