doc: fix code blocks #52
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: Micromed IO Documentation | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
env: | |
CONDA_ENV: 'environment.yml' | |
strategy: | |
matrix: | |
python-version: ["3.9"] | |
name: build-doc_python-${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: 'mmio' | |
python-version: ${{ matrix.python-version }} | |
environment-file: ${{ env.CONDA_ENV }} | |
- name: Install extra dependencies | |
shell: bash -el {0} | |
run: poetry install --with dev | |
- name: Sphinx build | |
shell: bash -el {0} | |
run: | | |
sphinx-build docs/source docs/build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: docs/build/ | |
force_orphan: true |