From b3cf49c659d5e37833d4839e4ad4ccd2c6a5fee4 Mon Sep 17 00:00:00 2001 From: lenadoc Date: Tue, 17 Dec 2024 19:02:03 +0100 Subject: [PATCH] Update deploy.yml --- .github/workflows/deploy.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5dee936..168718c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -7,7 +7,7 @@ on: jobs: deploy: - runs-on: ubuntu-latest + runs-on: ubuntu-ubuntu-22.04 steps: - name: Checkout code @@ -18,10 +18,12 @@ jobs: with: python-version: 3.x # Specify the Python version you need + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Install dependencies run: | - pip install -r requirements.txt - pip install mike + pip install --upgrade pip + pip install mkdocs mike - name: Deploy documentation run: |