lauracabayol commited on
Commit
4f50b0c
·
1 Parent(s): b9e6af6
Files changed (1) hide show
  1. .github/workflows/deploy_docs.yml +7 -12
.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: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
21
- - uses: actions/cache@v4
22
- with:
23
- key: mkdocs-material-${{ env.cache_id }}
24
- path: .cache
25
- restore-keys: |
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