Skip to content

Commit cdb4147

Browse files
committed
fix: index
maybe this time! :DDD
1 parent 5293716 commit cdb4147

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/pages.yaml

+3-4
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,16 @@ jobs:
3232
pip install -r requirements.txt
3333
3434
- name: Setup Pages
35-
uses: actions/configure-pages@v3
35+
uses: actions/configure-pages@v5
3636

37-
# builds to out.html
3837
- name: Build the site
3938
run: python "./generate.py"
4039

4140
- name: Upload Artifact
42-
uses: actions/upload-pages-artifact@v2
41+
uses: actions/upload-pages-artifact@v3
4342
with:
4443
path: ./out
4544

4645
- name: Deploy to GitHub Pages
4746
id: deployment
48-
uses: actions/deploy-pages@v2
47+
uses: actions/deploy-pages@v4

generate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,5 @@ def generate_command_table():
111111
)
112112

113113
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:
115115
f.write(out)

0 commit comments

Comments
 (0)