Skip to content

Merge pull request #4 from gofflab/claude/add-genome-reference-tool-t… #5

Merge pull request #4 from gofflab/claude/add-genome-reference-tool-t…

Merge pull request #4 from gofflab/claude/add-genome-reference-tool-t… #5

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- master
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r docs/requirements.txt
python -m pip install .
- name: Build docs
run: mkdocs build --strict
- name: Publish to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site