Add pip install to generate job for yaml dependency (#152)

The generate job was missing requirements.txt installation, causing 'ModuleNotFoundError: No module named yaml' after generate_content.py was updated to use yaml.safe_load for frontmatter parsing. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

Juan Manuel Servera committed May 21, 2026 at 14:39 UTC 236dd06c8ec6825087d34a4a076c0aafa755b1ec
1 file changed +3
.github/workflows/crawl-and-publish.yml
+3
@@ -484,6 +484,9 @@ jobs:
484 with:
485 python-version: '3.12'
486
487 + - name: Install Python dependencies
488 + run: pip install -r requirements.txt
489 +
490 - name: Generate weekly content
491 id: generate-content
492 env: