File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -32,17 +32,16 @@ jobs:
32
32
pip install -r requirements.txt
33
33
34
34
- name : Setup Pages
35
- uses : actions/configure-pages@v3
35
+ uses : actions/configure-pages@v5
36
36
37
- # builds to out.html
38
37
- name : Build the site
39
38
run : python "./generate.py"
40
39
41
40
- name : Upload Artifact
42
- uses : actions/upload-pages-artifact@v2
41
+ uses : actions/upload-pages-artifact@v3
43
42
with :
44
43
path : ./out
45
44
46
45
- name : Deploy to GitHub Pages
47
46
id : deployment
48
- uses : actions/deploy-pages@v2
47
+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change @@ -111,5 +111,5 @@ def generate_command_table():
111
111
)
112
112
113
113
os .makedirs ("out" , exist_ok = True ) # just in case
114
- with open ("out/out .html" , "w" ) as f :
114
+ with open ("out/index .html" , "w" ) as f :
115
115
f .write (out )
You can’t perform that action at this time.
0 commit comments