We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e81d871 commit b3cf49cCopy full SHA for b3cf49c
1 file changed
.github/workflows/deploy.yml
@@ -7,7 +7,7 @@ on:
7
8
jobs:
9
deploy:
10
- runs-on: ubuntu-latest
+ runs-on: ubuntu-ubuntu-22.04
11
12
steps:
13
- name: Checkout code
@@ -18,10 +18,12 @@ jobs:
18
with:
19
python-version: 3.x # Specify the Python version you need
20
21
+ env:
22
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
- name: Install dependencies
24
run: |
- pip install -r requirements.txt
- pip install mike
25
+ pip install --upgrade pip
26
+ pip install mkdocs mike
27
28
- name: Deploy documentation
29
0 commit comments