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 02959a4 commit 3b40b28Copy full SHA for 3b40b28
docs/docs_manual.json renamed to docs/docs_input.json
docs/mkdocs.py
@@ -9,8 +9,8 @@
9
CICD_DEPLOYMENT_SCRIPTS_DIR, ".github", "workflows"
10
)
11
DOCS_JSON_FILE = os.path.join(CICD_DEPLOYMENT_SCRIPTS_DIR, "docs", "docs.json")
12
-DOCS_MANUAL_JSON_FILE = os.path.join(
13
- CICD_DEPLOYMENT_SCRIPTS_DIR, "docs", "docs_manual.json"
+DOCS_INPUT = os.path.join(
+ CICD_DEPLOYMENT_SCRIPTS_DIR, "docs", "docs_input.json"
14
15
README_TEMPLATE = """
16
# cicd-deployment-scripts
@@ -27,7 +27,7 @@
27
"""
28
29
30
-with open(DOCS_MANUAL_JSON_FILE, "r") as file:
+with open(DOCS_INPUT, "r") as file:
31
docs_manual = json.load(file)
32
33
0 commit comments