From 9fea4f5806b0532b9cde9b827603f2f6eca674ce Mon Sep 17 00:00:00 2001 From: John Long Date: Sun, 22 Nov 2020 19:39:50 +0100 Subject: [PATCH] Setup python --- .github/workflows/deploy-docs.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 9aa56fb9..6df19da5 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -9,11 +9,14 @@ jobs: name: Deploy docs runs-on: ubuntu-latest steps: - - name: Checkout master - uses: actions/checkout@v2 + - uses: actions/checkout@v2 + - name: Setup Python + uses: actions/setup-python@v2 + with: + python-version: 3.8 - name: Install Mkdocs run: | - python -m pip install --upgrade pip + python3 -m pip install --upgrade pip pip install mkdocs - name: Deploy docs - run: python -m mkdocs gh-deploy + run: mkdocs gh-deploy