Skip to content

Commit f09ca1e

Browse files
committed
Add MkDocs build steps to workflow
1 parent 8bc41e0 commit f09ca1e

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

.github/workflows/static.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ jobs:
2323
- name: Checkout
2424
uses: actions/checkout@v4
2525

26+
- name: Setup Python
27+
uses: actions/setup-python@v4
28+
with:
29+
python-version: '3.10'
30+
31+
- name: Install dependencies
32+
run: |
33+
pip install mkdocs mkdocs-material
34+
35+
- name: Build site
36+
run: |
37+
mkdocs build
38+
2639
- name: Setup Pages
2740
uses: actions/configure-pages@v4
2841

@@ -33,4 +46,4 @@ jobs:
3346

3447
- name: Deploy to GitHub Pages
3548
id: deployment
36-
uses: actions/deploy-pages@v4
49+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)