fix names and links after renaming the organisation (#789) #430
This file contains 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@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: _slides | |
publish_dir: pdf/ | |
force_orphan: true |