Skip to content

Update citation.cff #12

Update citation.cff

Update citation.cff #12

Workflow file for this run

# Build ThermoParser's docs
name: docs
on:
push:
branches: [ "master" ]
permissions:
contents: read
pages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install sphinx sphinx_rtd_theme
- name: Build docs with sphinx
run: |
cd docs; sphinx-build -b html src/ .
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: docs/