We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4394269 commit b9d6150Copy full SHA for b9d6150
1 file changed
.github/workflows/main.yml
@@ -6,11 +6,22 @@ on:
6
7
jobs:
8
build:
9
- name: Deploy docs
+
10
runs-on: ubuntu-latest
11
12
+ # For setup, see https://www.mkdocs.org/#installation
13
steps:
- - name: Checkout master
- 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
20
+ python-version: '3.10'
21
+ - name: Install dependencies
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install mkdocs
25
26
- name: Deploy MkDocs
27
uses: mhausenblas/mkdocs-deploy-gh-pages@master
0 commit comments