removed institute setting from title slide according to #20 #9
Workflow file for this run
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: Build LaTex sources. | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/xu-cheng/texlive-full:latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Compile LaTeX sources | |
run: make -C slides | |
- name: Upload .pdf File | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Slides | |
path: | | |
slides/*.pdf |