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:
1212 runs-on : ubuntu-latest
1313 steps :
1414 - 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
2017 with :
2118 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
2424 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