Deploy Slides to GitHub Pages
Deployment is automated via GitHub Actions CI/CD. Pushing to main triggers rendering and deployment.
Production Deploy (CI/CD)
- Commit and push source changes to
main - GitHub Actions automatically:
- Renders all QMD files in
Quarto/ - Strips speaker notes from HTML (safety net)
- Assembles site: HTML + RevealJS assets + Beamer PDFs + Figures
- Deploys to GitHub Pages
- Renders all QMD files in
- Verify at the GitHub Pages URL
Local Preview (Optional)
For testing before push:
Run the sync script:
- If
$ARGUMENTSis provided (e.g., "DreamZero"):./scripts/sync_to_docs.sh $ARGUMENTS - If no argument:
./scripts/sync_to_docs.sh(syncs all lectures)
- If
Open in browser:
open docs/slides/PaperName.html# macOS
Note: docs/ is gitignored — local preview output does not enter git.
Speaker Notes Policy
- QMD source always contains
::: {.notes}blocks (single source of truth) - Local (
Quarto/*.html): notes included — pressSfor speaker view - Public (GitHub Pages): notes stripped by CI/CD pipeline
- Git clean filter strips notes from QMD before commit (
.gitattributes)