Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
pip install -e .

- name: Build docs
run: cd docs && zensical build --clean -f ../zensical.toml
run: cd docs && zensical build --clean

- name: Upload build artifact
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: docs-build
path: docs/_build/
path: docs/site/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ AGENTS.md

# Docs build output
docs/_build/
docs/site/
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build:
- pip install --upgrade pip
- pip install zensical
- pip install -e .
- cd docs && zensical build --clean -f ../zensical.toml
- cd docs && zensical build --clean && cp -r site $READTHEDOCS_OUTPUT/html

python:
install:
Expand Down
1 change: 1 addition & 0 deletions zensical.toml → docs/zensical.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[project]
docs_dir = "."
site_name = "DNANet"
site_description = "A deep learning framework for forensic DNA profile analysis"
site_author = "Netherlands Forensic Institute (NFI)"
Expand Down
Loading