diff --git a/mkdocs-insiders.yml b/mkdocs-insiders.yml index 8e4a01c..f383195 100644 --- a/mkdocs-insiders.yml +++ b/mkdocs-insiders.yml @@ -2,5 +2,5 @@ # that don't degrade for the open-source version INHERIT: mkdocs.yml # disabled for now, since I'm not convinced social cards are better than default thumbnails -# plugins: -# social: {} +plugins: + social: {} diff --git a/runtime.txt b/runtime.txt new file mode 100644 index 0000000..98fccd6 --- /dev/null +++ b/runtime.txt @@ -0,0 +1 @@ +3.8 \ No newline at end of file diff --git a/scripts/build.sh b/scripts/build.sh index dfa4620..1487f9c 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -13,7 +13,9 @@ then pip install mkdocs-material mkdocs build -f mkdocs.yml else - pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git + # Bypass search issue described at https://github.com/squidfunk/mkdocs-material/issues/3053 + git clone --depth 1 https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git + pip install -e mkdocs-material-insiders mkdocs build -f mkdocs-insiders.yml fi