-
Notifications
You must be signed in to change notification settings - Fork 0
103 lines (82 loc) · 3 KB
/
latex.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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