From 773c08aa1d46db9afe7b9c9a3f5194bcdbf6c25b Mon Sep 17 00:00:00 2001 From: Stephen Curran Date: Wed, 21 Feb 2024 14:02:24 -0800 Subject: [PATCH] GHActions tweak Signed-off-by: Stephen Curran --- .github/workflows/publish-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 708fe60fa9..be7d5de0ca 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -46,7 +46,7 @@ jobs: # Copy all of the root level md files into the docs folder for deployment, tweaking the relative paths for i in *.md; do sed -e "s#docs/#./#g" $i >docs/$i; done # Populate overrides for the current version, and then remove to not apply if VERSION is main branch - echo -e "{% extends "base.html" %}\n\n{% block outdated %}\n You are viewing the documentation for ACA-Py Release $VERSION.\n{% endblock %}" >overrides/base.html + echo -e "{% extends "base.html" %}\n\n{% block outdated %}\n You are viewing the documentation for ACA-Py Release $VERSION.\n{% endblock %}" >overrides/main.html # If building from main, use latest as ALIAS and remove the base.html override [ "$VERSION" == "main" ] && ALIAS=latest && rm overrides/base.html echo $VERSION $ALIAS