Add link to slides to readme (#34) #9
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
| name: Continuous Deployment | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| deploy-docs: | |
| runs-on: ubuntu-latest | |
| concurrency: deploy-${{ github.ref }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.12 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| version: "0.5.10" | |
| - name: Set up env | |
| run: uv sync --all-extras --frozen | |
| - name: Copy notebooks to docs folder | |
| run: cp -r notebooks/* docs/notebooks | |
| - run: | | |
| uv run ipython kernel install --user --name=behavior_generation_lecture | |
| uv run mkdocs gh-deploy --force |