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 30128f3 commit fd63d0cCopy full SHA for fd63d0c
.github/workflows/doc-build.yml
@@ -8,6 +8,7 @@ on:
8
- release/*
9
tags:
10
- v[0-9]+.[0-9]+.[0-9]+
11
+ - v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
12
workflow_dispatch:
13
schedule:
14
- cron: '0 0 * * *'
docs/source/conf.py
@@ -86,6 +86,8 @@
86
version = ".".join(
87
et_version_docs.split("/")[-1].split("-")[0].lstrip("v").split(".")[:2]
88
)
89
+ elif et_version_docs.startswith("refs/heads/release/"):
90
+ version = et_version_docs.split("/")[-1]
91
print(f"Version: {version}")
92
html_title = " ".join((project, version, "documentation"))
93
0 commit comments