From d5286296ebb5ec8770020308723cbb8f3eb7f956 Mon Sep 17 00:00:00 2001 From: Alexander Matyushentsev Date: Fri, 7 Feb 2020 16:06:06 -0800 Subject: [PATCH] fix: install exact version of mkdocs and mkdocs_material during docs site building (#3095) --- .github/workflows/gh-pages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml index 1915ae0d0b..a66ddf2905 100644 --- a/.github/workflows/gh-pages.yaml +++ b/.github/workflows/gh-pages.yaml @@ -16,7 +16,7 @@ jobs: python-version: 3.x - name: build run: | - pip install mkdocs mkdocs_material + pip install mkdocs==1.0.4 mkdocs_material==4.1.1 mkdocs build mkdir ./site/.circleci && echo '{version: 2, jobs: {build: {branches: {ignore: gh-pages}}}}' > ./site/.circleci/config.yml - name: deploy