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.
2 parents af27afe + 447d37a commit fb6c7b1Copy full SHA for fb6c7b1
.github/workflows/reusable-build-doc.yml
@@ -183,7 +183,7 @@ jobs:
183
if [ $SPHINX_VER != "requirements.txt" ]; then
184
pip install "sphinx${SPHINX_VER}"
185
fi
186
- if [ THEME_VER != "requirements.txt" ]; then
+ if [ $THEME_VER != "requirements.txt" ]; then
187
pip install "sphinx_rtd_theme${THEME_VER}"
188
189
working-directory: ${{ github.workspace }}
.github/workflows/reusable-get-build-targets.yml
@@ -46,7 +46,7 @@ jobs:
46
47
CURRENT_PUSHED_TAG=""
48
if [[ "${IS_TAG_PUSH}" == "true" ]]; then
49
- CURRENT_PUSHED_TAG="$(echo ${GITHUB_REFNAME} | sed s/refs\/tags\///)"
+ CURRENT_PUSHED_TAG="$(echo ${GITHUB_REFNAME} | sed 's/refs\/tags\///')"
50
51
52
# Handle manual workflow dispatch with target_ref
0 commit comments