Skip to content

PAMtools docs

PAMtools docs #7

Workflow file for this run

name: PAMtools docs
on:
push:
paths:
- 'docs/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: build docs
run: |
sudo apt-get install pandoc
pip install sphinx
pip install sphinx-rtd-theme
pip install nbsphinx
cd docs/
make html
- name: deploy to gh-pages
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/build/html