File tree Expand file tree Collapse file tree 1 file changed +8
-13
lines changed Expand file tree Collapse file tree 1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,14 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v4
15
- - name : Configure Git Credentials
16
- run : |
17
- git config user.name github-actions[bot]
18
- git config user.email 41898282+github-actions[bot]@users.noreply.github.com
19
- - uses : actions/setup-python@v4
15
+ - name : Set up Python
16
+ uses : actions/setup-python@v4
20
17
with :
21
18
python-version : 3.x
22
- - run : echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
23
- - uses : actions/cache@v3
19
+ - run : pip install mkdocs-material
20
+ - name : Build site
21
+ run : mkdocs build
22
+ - name : Upload artifact
23
+ uses : actions/upload-pages-artifact@v2
24
24
with :
25
- key : mkdocs-material-${{ env.cache_id }}
26
- path : .cache
27
- restore-keys : |
28
- mkdocs-material-
29
- - run : pip install mkdocs-material
30
- - run : mkdocs gh-deploy --force
25
+ path : site
You can’t perform that action at this time.
0 commit comments