Website Deployment Workflow
This project is built using Quarto. The raw source files (Markdown, configurations, raw data) are tracked on the main branch, while the rendered HTML output is strictly deployed to the gh-pages branch.
1. Save and Version the Source Code
Before publishing, ensure all updates to your working files are committed to the main branch. This keeps your research and code safely backed up. Do this in the Terminal in the website folder (either in RStudio or Terminal)
```bash git add . git commit -m “Update site content” git push origin main quarto publish gh-pages