Swap Forrester and SIR #274
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: build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: prefix-dev/setup-pixi@v0.8.1 | |
| with: | |
| cache: false # 🪲 Bug mitigation | |
| locked: false # 🪲 Bug mitigation | |
| environments: build | |
| - name: LaTeX Install | |
| run: sudo apt-get update && sudo apt-get install texlive-full | |
| - name: Slides & Notebooks Build | |
| run: pixi run build --pdf | |
| - name: Deployment Setup | |
| run: rm .gitignore | |
| - name: Deployment | |
| uses: JamesIves/github-pages-deploy-action@3.7.1 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| BRANCH: gh-pages | |
| FOLDER: "." | |
| SINGLE_COMMIT: true | |
| PRESERVE: true |