File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 steps :
99 - name : Check out code
10- uses : actions/checkout@v2
10+ uses : actions/checkout@v3
1111 - name : Setup Python
12- uses : actions/setup-python@v2
12+ uses : actions/setup-python@v4
1313 with :
14- python-version : ' 3.8 '
14+ python-version : ' 3.9 '
1515 - name : Install dependencies
1616 run : python3 -m pip install mkdocs-bootswatch
1717 - name : Build docs
1818 run : |
1919 GLOBIGNORE=ID_software_architecture_files:README.md:.git:.github
2020 rm -rf *
2121 cd ID_software_architecture_files
22- mkdocs build
22+ mkdocs build
23+ sed -ie 's!jquery-1.10.2.min.js!jquery-3.5.0.min.js!' site/404.html
24+ sed -ie 's!jquery-1.10.2.min.js!jquery-3.5.0.min.js!' site/index.html
25+ rm site/js/jquery*
26+ curl -o site/js/jquery-3.5.0.min.js https://code.jquery.com/jquery-3.5.0.min.js
2327 mv site/* ..
2428 rmdir site
2529 - name : Deploy
You can’t perform that action at this time.
0 commit comments