We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 161fec6 commit e5db94cCopy full SHA for e5db94c
duties.py
@@ -123,7 +123,11 @@ def docs_deploy(ctx: Context) -> None:
123
ctx.run(lambda: False, title="Not deploying docs without Material for MkDocs Insiders!")
124
origin = ctx.run("git config --get remote.origin.url", silent=True)
125
if "pawamoy-insiders/griffe-runtime-objects" in origin:
126
- ctx.run("git remote add upstream git@github.com:mkdocstrings/griffe-runtime-objects", silent=True, nofail=True)
+ ctx.run(
127
+ "git remote add upstream git@github.com:mkdocstrings/griffe-runtime-objects",
128
+ silent=True,
129
+ nofail=True,
130
+ )
131
ctx.run(
132
tools.mkdocs.gh_deploy(remote_name="upstream", force=True),
133
title="Deploying documentation",
0 commit comments