From 5c1b19bed6de838b9173314201691f810ba2f0c6 Mon Sep 17 00:00:00 2001 From: collerek Date: Tue, 8 Jun 2021 16:25:11 +0200 Subject: [PATCH] Update deploy-docs.yml --- .github/workflows/deploy-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 8c7e12e..9bcf1f4 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -12,13 +12,13 @@ jobs: - name: Set up Python 3.7 uses: actions/setup-python@v2 with: - python-version: '3.x' + python-version: '3.7' - name: Install dependencies run: | python -m pip install --upgrade pip pip install mkdocs-material pydoc-markdown - name: Build Api docs - run: pydoc-markdown --build --site-dir=api + run: python -m pydoc-markdown --build --site-dir=api - name: Copy APi docs run: cp -Tavr ./build/docs/content/ ./docs/api/ - name: Deploy