File tree 1 file changed +16
-6
lines changed
1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,23 @@ jobs:
15
15
steps :
16
16
- name : Checkout master
17
17
uses : actions/checkout@v4
18
+ - uses : actions/setup-python@v5
19
+ with :
20
+ python-version : 3.x
21
+ - run : pip install mkdocs && pip install mkdocs-material==8.5
22
+ - name : Deploy site
23
+ run : mkdocs build
24
+ # build according to mkdocs.yml in root directory
25
+ - name : Deploy https://kjellkod.github.io/g3log/
26
+ run : mkdocs gh-deploy --force
18
27
19
- - name : Deploy docs
20
- uses : mhausenblas/mkdocs-deploy-gh-pages@master
21
- env :
22
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
23
- CONFIG_FILE : mkdocs.yml
24
- EXTRA_PACKAGES : build-base
28
+
29
+ # - name: Deploy docs
30
+ # uses: mhausenblas/mkdocs-deploy-gh-pages@master
31
+ # env:
32
+ # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
+ # CONFIG_FILE: mkdocs.yml
34
+ # EXTRA_PACKAGES: build-base
25
35
26
36
# # Publish docs via GitHub Pages to https://kjellkod.github.io/g3log/
27
37
# on:
You can’t perform that action at this time.
0 commit comments