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
8 changes: 6 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
- name: Set up environment
uses: ./.github/actions/environment

- name: Deploy MkDocs
- name: Build Zensical
shell: bash
run: uv run mkdocs gh-deploy --force
run: uv run zensical build --clean

- name: Deploy to GitHub Pages
shell: bash
run: uv run ghp-import --branch gh-pages --force --message "Deployed ${GITHUB_SHA} with Zensical" --no-jekyll --push site
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ mypy:
pytest:
uv run pytest

mkdocs:
uv run mkdocs serve
zensical:
uv run zensical serve
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
site_name: python-cq
site_url: https://python-cq.remimd.dev

repo_name: 100nm/python-cq
repo_url: https://github.com/100nm/python-cq
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ dev = [
"ruff",
]
docs = [
"mkdocs",
"mkdocs-material",
"ghp-import",
"zensical",
]
test = [
"pytest",
Expand Down
Loading
Loading