We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d5608 commit ad96e2eCopy full SHA for ad96e2e
.github/workflows/deploy-docs.yaml
@@ -18,9 +18,9 @@ jobs:
18
with:
19
python-version: '3.10'
20
21
- - name: Install MkDocs
+ - name: Install MkDocs and Material theme
22
run: |
23
- pip install mkdocs
+ pip install mkdocs mkdocs-material
24
25
- name: Install AWS CLI
26
@@ -40,9 +40,10 @@ jobs:
40
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
41
aws-region: us-west-2 # or your preferred region
42
43
- - name: Install MkDocs and Material theme
+ - name: Build MkDocs site
44
45
- pip install mkdocs mkdocs-material
+ rm -rf site
46
+ mkdocs build
47
48
- name: Deploy to S3
49
0 commit comments