Skip to content

Commit

Permalink
♻️ Also upload .py files in docs artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Sep 30, 2024
1 parent c271af0 commit 4381c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion laminci/_docs_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def zip_docs_dir(zip_filename: str) -> None:
for f in Path("./docs").glob("**/*"):
if ".ipynb_checkpoints" in str(f):
continue
if f.suffix in {".md", ".ipynb", ".png", ".jpg", ".svg"}:
if f.suffix in {".md", ".ipynb", ".png", ".jpg", ".svg", ".py"}:
zf.write(f, f.relative_to("./docs")) # add at root level


Expand Down

0 comments on commit 4381c9d

Please sign in to comment.