We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e71db6 commit 053ade4Copy full SHA for 053ade4
1 file changed
duties.py
@@ -213,7 +213,11 @@ def docs_deploy(ctx: Context) -> None:
213
ctx.run(lambda: False, title="Not deploying docs without Material for MkDocs Insiders!")
214
origin = ctx.run("git config --get remote.origin.url", silent=True)
215
if "pawamoy-insiders/griffe-inherited-docstrings" in origin:
216
- ctx.run("git remote add upstream git@github.com:mkdocstrings/griffe-inherited-docstrings", silent=True, nofail=True)
+ ctx.run(
217
+ "git remote add upstream git@github.com:mkdocstrings/griffe-inherited-docstrings",
218
+ silent=True,
219
+ nofail=True,
220
+ )
221
ctx.run(
222
mkdocs.gh_deploy(remote_name="upstream", force=True),
223
title="Deploying documentation",
0 commit comments