Skip to content

Commit ad96e2e

Browse files
committed
updated install mkdocs
1 parent 01d5608 commit ad96e2e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/deploy-docs.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
with:
1919
python-version: '3.10'
2020

21-
- name: Install MkDocs
21+
- name: Install MkDocs and Material theme
2222
run: |
23-
pip install mkdocs
23+
pip install mkdocs mkdocs-material
2424
2525
- name: Install AWS CLI
2626
run: |
@@ -40,9 +40,10 @@ jobs:
4040
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
4141
aws-region: us-west-2 # or your preferred region
4242

43-
- name: Install MkDocs and Material theme
43+
- name: Build MkDocs site
4444
run: |
45-
pip install mkdocs mkdocs-material
45+
rm -rf site
46+
mkdocs build
4647
4748
- name: Deploy to S3
4849
run: |

0 commit comments

Comments
 (0)