Add slide 13 #5
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: Compile latex slides | |
# This workflow is triggered on pushes to the repository. | |
on: | |
push: | |
branches: | |
- main | |
# Paths can be used only to trigger actions when you have edited certain files, such as a file within the /docs directory | |
paths: | |
- 'rendu/**' | |
# - 'images/**' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
makepdfs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- uses: xu-cheng/latex-action@v3 | |
with: | |
root_file: presentation.tex | |
working_directory: rendu | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: presentation | |
path: rendu/presentation.pdf |