Homework: remove B10 from readme - there are just 9 assignments #565
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: SLIDES | |
on: | |
# push on master branch: build slides (pandoc) | |
push: | |
branches: [master] | |
# manually triggered: build slides (pandoc) | |
workflow_dispatch: | |
jobs: | |
# build slides (pandoc): "make slides" | |
slides: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cagix/pandoc-lecture@master | |
with: | |
texlive: 'true' | |
- run: make slides | |
- uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: _slides | |
publish_dir: pdf/ | |
force_orphan: true |