diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-03 11:35:11 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-03 12:59:04 +0200 |
commit | f3746283d19ae6a6e54f9543faa0831060b057d9 (patch) | |
tree | efb2dba26644e32d2f4408f4c8d855b08069fec1 /.readthedocs.yaml | |
parent | 20a963495efeb3df19f19e3c1f15902adf823a6d (diff) | |
download | Ishtar-develop-md.tar.bz2 Ishtar-develop-md.zip |
🏗️ documentation: reST to markdown (mkdocs)develop-md
Diffstat (limited to '.readthedocs.yaml')
-rw-r--r-- | .readthedocs.yaml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 52faf18dd..cd5c2e680 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -1,23 +1,23 @@ -# .readthedocs.yaml -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - # Required version: 2 -formats: - - pdf - # Set the version of Python and other tools you might need + build: os: ubuntu-22.04 tools: - python: "3.9" + python: "3.12" + jobs: + post_build: + - mkdir -p $READTHEDOCS_OUTPUT/pdf/ + - mv ./_readthedocs/html/build.pdf $READTHEDOCS_OUTPUT/pdf/$READTHEDOCS_PROJECT.pdf + +formats: + - pdf -# Build documentation in the docs/ directory with Sphinx -sphinx: - configuration: docs/fr/source/conf.py +mkdocs: + configuration: docs/mkdocs.fr.yml python: install: - - requirements: requirements_rtd.txt
\ No newline at end of file + - requirements: requirements_rtd.txt |