We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 310addc commit b36ae9bCopy full SHA for b36ae9b
.github/workflows/deploy.yml
@@ -43,6 +43,25 @@ jobs:
43
- name: Transform data
44
run: uv run make transform EXCLUDE="schedule youtube" > /dev/null 2>&1
45
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
+
65
- name: Upload site artifact
66
uses: actions/upload-pages-artifact@v4
67
with:
0 commit comments