From: Sebastián Ramírez Date: Tue, 30 Nov 2021 16:27:50 +0000 (+0100) Subject: 🔧 Add MkDocs Material social cards (#90) X-Git-Tag: 0.0.5~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55259b3c8b66ad45f65f40cafc28f26edd9acb43;p=thirdparty%2Ffastapi%2Fsqlmodel.git 🔧 Add MkDocs Material social cards (#90) --- diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 82402f53..31b79922 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -51,6 +51,10 @@ jobs: - name: Install Material for MkDocs Insiders if: github.event.pull_request.head.repo.fork == false && steps.cache.outputs.cache-hit != 'true' run: python -m poetry run pip install git+https://${{ secrets.ACTIONS_TOKEN }}@github.com/squidfunk/mkdocs-material-insiders.git + - uses: actions/cache@v2 + with: + key: mkdocs-cards-${{ github.ref }} + path: .cache - name: Build Docs run: python -m poetry run mkdocs build - name: Zip docs diff --git a/.gitignore b/.gitignore index 909f50ed..40060693 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ htmlcov coverage.xml site *.db +.cache diff --git a/mkdocs.yml b/mkdocs.yml index 5ebc3610..673c2d3c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -32,6 +32,7 @@ google_analytics: - auto plugins: - search +- social nav: - SQLModel: index.md - features.md