Skip to content

Commit b36ae9b

Browse files
authored
Create index.html for PyLadiesCon 2025
Add a step to create an index.html for the PyLadiesCon 2025 program data.
1 parent 310addc commit b36ae9b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,25 @@ jobs:
4343
- name: Transform data
4444
run: uv run make transform EXCLUDE="schedule youtube" > /dev/null 2>&1
4545

46+
- name: Create index.html
47+
run: |
48+
cat > data/public/plc25/index.html <<'EOF'
49+
<!DOCTYPE html>
50+
<html>
51+
<head>
52+
<meta charset="UTF-8">
53+
<title>PyLadiesCon 2025 Program Data</title>
54+
</head>
55+
<body>
56+
<h1>PyLadiesCon 2025 Program Data</h1>
57+
<ul>
58+
<li><a href="/sessions.json">sessions.json</a></li>
59+
<li><a href="/speakers.json">speakers.json</a></li>
60+
</ul>
61+
</body>
62+
</html>
63+
EOF
64+
4665
- name: Upload site artifact
4766
uses: actions/upload-pages-artifact@v4
4867
with:

0 commit comments

Comments
 (0)