Spaces:
Runtime error
Runtime error
Commit
·
4f50b0c
1
Parent(s):
b9e6af6
debugging
Browse files
.github/workflows/deploy_docs.yml
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
name: deploy_docs
|
2 |
on:
|
3 |
push:
|
4 |
branches:
|
@@ -17,14 +17,9 @@ jobs:
|
|
17 |
- uses: actions/setup-python@v5
|
18 |
with:
|
19 |
python-version: 3.x
|
20 |
-
- run:
|
21 |
-
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
mkdocs-material-
|
27 |
-
- run: pip install mkdocs
|
28 |
-
- name: Build and Deploy Documentation
|
29 |
-
working-directory: docs
|
30 |
-
run: mkdocs gh-deploy --force
|
|
|
1 |
+
name: deploy_docs
|
2 |
on:
|
3 |
push:
|
4 |
branches:
|
|
|
17 |
- uses: actions/setup-python@v5
|
18 |
with:
|
19 |
python-version: 3.x
|
20 |
+
- run: pip install mkdocs
|
21 |
+
- run: mkdocs build
|
22 |
+
- name: List Site Files
|
23 |
+
run: ls -l site/
|
24 |
+
- name: Deploy Documentation to GitHub Pages
|
25 |
+
run: mkdocs gh-deploy --force
|
|
|
|
|
|
|
|
|
|