Skip to content

Commit b9d6150

Browse files
authored
Update main.yml
1 parent 4394269 commit b9d6150

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,22 @@ on:
66

77
jobs:
88
build:
9-
name: Deploy docs
9+
1010
runs-on: ubuntu-latest
11+
12+
# For setup, see https://www.mkdocs.org/#installation
1113
steps:
12-
- name: Checkout master
13-
uses: actions/checkout@v4
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0 # Needed for the revisions plugin to work
17+
- name: Set up Python 3.10
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: '3.10'
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install mkdocs
1425
1526
- name: Deploy MkDocs
1627
uses: mhausenblas/mkdocs-deploy-gh-pages@master

0 commit comments

Comments
 (0)