Added the workflow latex configuration for the new training. #75
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 document | |
on: [push] | |
jobs: | |
build_latex: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v1 | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@master | |
with: | |
working_directory: 20200212 | |
root_file: 20200212_MONARC-training.tex | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@master | |
with: | |
working_directory: 20200722 | |
root_file: 20200722_MONARC-training.tex | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@master | |
with: | |
working_directory: 20201203 | |
root_file: 20201203_MONARC-training.tex | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@master | |
with: | |
working_directory: 20210929 | |
root_file: 20210929_MONARC-training.tex | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@master | |
with: | |
working_directory: 20220419 | |
root_file: 20220419_MONARC-training.tex | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@master | |
with: | |
working_directory: 20221019 | |
root_file: 20221019_MONARC-training.tex | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@master | |
with: | |
working_directory: 20221128 | |
root_file: 20221128_MONARC-training.tex | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@master | |
with: | |
working_directory: 20221207 | |
root_file: 20221207_MONARC-training.tex | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@master | |
with: | |
working_directory: 20230531 | |
root_file: 20230531_MONARC-training.tex | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@master | |
with: | |
working_directory: 20231206 | |
root_file: 20231206_MONARC-training.tex | |
- run: mkdir -p artifact | |
- run: mv 20200212/20200212_MONARC-training.pdf artifact/ | |
- run: mkdir -p artifact | |
- run: mv 20200722/20200722_MONARC-training.pdf artifact/ | |
- run: mkdir -p artifact | |
- run: mv 20201203/20201203_MONARC-training.pdf artifact/ | |
- run: mkdir -p artifact | |
- run: mv 20210929/20210929_MONARC-training.pdf artifact/ | |
- run: mkdir -p artifact | |
- run: mv 20220419/20220419_MONARC-training.pdf artifact/ | |
- run: mkdir -p artifact | |
- run: mv 20221019/20221019_MONARC-training.pdf artifact/ | |
- run: mkdir -p artifact | |
- run: mv 20221128/20221128_MONARC-training.pdf artifact/ | |
- run: mkdir -p artifact | |
- run: mv 20221207/20221207_MONARC-training.pdf artifact/ | |
- run: mkdir -p artifact | |
- run: mv 20230531/20230531_MONARC-training.pdf artifact/ | |
- run: mkdir -p artifact | |
- run: mv 20231206/20231206_MONARC-training.pdf artifact/ | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: MONARC-trainings.pdf | |
path: artifact |