Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-ubuntu-22.04

steps:
- name: Checkout code
Expand All @@ -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: |
Expand Down