Skip to content

Merge pull request #239 from andersen-lab/barcode-format-change #8

Merge pull request #239 from andersen-lab/barcode-format-change

Merge pull request #239 from andersen-lab/barcode-format-change #8

Workflow file for this run

name: docs
on:
push:
branches:
- main
paths:
- 'docs/**'
- 'freyja/_cli.py'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
- name: Build docs
run: |
cd docs
make html
- name: Deploy to GH Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
force_orphan: true