feat: restructure week 8-10 around posters + writing, rebuild lecture 18 #24
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow is disabled — all page generation now happens in deploy-site.yml. | |
| # Keeping the file to avoid breaking workflow_run triggers that reference it. | |
| # | |
| # Previously, this workflow generated assignment HTML/PDFs and committed them. | |
| # Since those files are now gitignored, the deploy workflow generates them | |
| # at deploy time instead. | |
| name: Build Course Pages | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'admin/syllabus.md' | |
| - 'assignments/**/*.md' | |
| - 'labs/**/*.md' | |
| - 'scripts/build-pages.py' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "Page generation now handled by deploy-site.yml" |