tooling: fix settings for pandoc-lecture-zen #30
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: Beamer Slides | |
| on: | |
| push: | |
| branches: [master] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| build-and-push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout lecture-repo (fully) | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: true | |
| - name: Fetch cagix/pandoc-lecture-zen@master | |
| run: make update_tooling | |
| - name: Build materials | |
| run: make beamer | |
| - name: Publish materials | |
| run: make publish_orphan PUBLISH_BRANCH=_beamer |