File tree 2 files changed +39
-0
lines changed
2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+
3
+
4
+ on :
5
+ push :
6
+ branches :
7
+ - master
8
+
9
+ permissions :
10
+ contents : write
11
+
12
+ jobs :
13
+ deploy :
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ - name : Configure Git Credentials
18
+ run : |
19
+ git config user.name github-actions[bot]
20
+ git config user.email 41898282+github-actions[bot]@users.noreply.github.com
21
+
22
+ - uses : actions/setup-python@v5
23
+ with :
24
+ python-version : 3.x
25
+ - run : echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
26
+
27
+
28
+ - uses : actions/cache@v4
29
+ with :
30
+ key : mkdocs-material-${{ env.cache_id }}
31
+ path : .cache
32
+ restore-keys : |
33
+ mkdocs-material-
34
+ - run : pip install mkdocs-material
35
+
36
+
37
+ - run : mkdocs gh-deploy --force
Original file line number Diff line number Diff line change
1
+ mkdocs
2
+ mkdocs-material
You can’t perform that action at this time.
0 commit comments