Skip to content

added GMLC acknowledgement to readme #15

added GMLC acknowledgement to readme

added GMLC acknowledgement to readme #15

Workflow file for this run

name: Documentation
on:
push:
branches: [main, master]
jobs:
make-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: select python version
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install sphinx
python -m pip install sphinx_rtd_theme
python -m pip install sphinx-click
python -m pip install sphinx-tabs
python -m pip install sphinx-copybutton
- name: build documentation
run: |
cd docs
python make_interactive_pages.py
make html
- name: deploy
uses: peaceiris/actions-gh-pages@v3.9.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
force_orphan: true
full_commit_message: ${{ github.event.head_commit.message }}