Skip to content

Add CI workflow to deploy a versioned MkDocs-based website to GitHub Pages #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jun 23, 2021
Merged
Prev Previous commit
Next Next commit
remove website:check since it does the same as docs:build & rename we…
…bsite:serve as docs:serve
  • Loading branch information
umbynos committed Jun 22, 2021
commit 385841853ceeb8195cdf92a001252aed0ad6a9c1
11 changes: 2 additions & 9 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,10 @@ tasks:
cmds:
- poetry install --no-root

website:check:
desc: Check whether the MkDocs-based website will build
deps:
- task: poetry:install-deps
cmds:
- poetry run mkdocs build --strict

website:serve:
docs:serve:
desc: Run website locally
deps:
- task: poetry:install-deps
- task: docs:build
cmds:
- poetry run mkdocs serve

Expand Down