Skip to content

Commit 680f210

Browse files
Merge pull request #13 from open-eid/jquery
Upgrade jQuery
2 parents 39126de + 70f9f5b commit 680f210

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/pages.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,23 @@ jobs:
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

0 commit comments

Comments
 (0)