We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 002817b commit 70159f9Copy full SHA for 70159f9
.github/workflows/ci.yml
@@ -25,7 +25,25 @@ jobs:
25
26
- run: pip install mkdocs-material
27
- run: pip install pillow cairosvg
28
- - run: mkdocs gh-deploy --force
+
29
+ - name: Build documentation
30
+ run: |
31
+ mkdocs build --clean
32
+ mkdocs --version
33
34
+ - name: Adjust permissions
35
36
+ chmod -c -R +rX site/ | while read line; do
37
+ echo "::warning title=Invalid file permissions automatically fixed::$line"
38
+ done
39
40
+ - name: Upload to GitHub Pages
41
+ uses: actions/upload-pages-artifact@v4
42
+ with:
43
+ path: site
44
45
+ - name: Deploy to GitHub Pages
46
+ uses: actions/deploy-pages@v4
47
48
- name: Save build cache
49
uses: actions/cache/save@v4
0 commit comments