Skip to content

Commit

Permalink
ci: change docs readme location
Browse files Browse the repository at this point in the history
  • Loading branch information
RaczeQ committed Jan 2, 2025
1 parent 6c8d46e commit b0ec492
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 300 deletions.
300 changes: 0 additions & 300 deletions docs/README.md

This file was deleted.

8 changes: 8 additions & 0 deletions docs/copy_readme.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"""Readme copying utility function."""

from pathlib import Path

import mkdocs_gen_files

with Path("README.md").open("rb") as src, mkdocs_gen_files.open("README.md", "wb") as dst:
dst.write(src.read())

0 comments on commit b0ec492

Please sign in to comment.