-
Notifications
You must be signed in to change notification settings - Fork 5
45 lines (45 loc) · 1.56 KB
/
build.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
# documentation: https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: build tutorial
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Compile LaTeX document (EESSI)
uses: xu-cheng/latex-action@f1ca82cbed861b3534e2997dd584944f55b884ed
with:
working_directory: isc24/EESSI/
root_file: main.tex
args: "-output-directory=build -pdf"
latexmk_shell_escape: true
- name: Store produce PDFs (EESSI)
uses: actions/upload-artifact@v4
with:
name: EESSI-ISC24-tutorial
path: isc24/EESSI/build/main.pdf
- name: Compile LaTeX document (CernVM-FS)
uses: xu-cheng/latex-action@f1ca82cbed861b3534e2997dd584944f55b884ed
with:
working_directory: isc24/CernVM-FS
root_file: main.tex
args: "-output-directory=build -pdf"
latexmk_shell_escape: true
- name: Store produce PDFs (CernVM-FS)
uses: actions/upload-artifact@v4
with:
name: CVMFS-ISC24-tutorial
path: isc24/CernVM-FS/build/main.pdf
- name: Compile LaTeX document (EESSI, SC24)
uses: xu-cheng/latex-action@f1ca82cbed861b3534e2997dd584944f55b884ed
with:
working_directory: sc24/EESSI
root_file: main.tex
args: "-output-directory=build -pdf"
latexmk_shell_escape: true
- name: Store produce PDFs (EESSI, SC24)
uses: actions/upload-artifact@v4
with:
name: EESSI-SC24-tutorial
path: sc24/EESSI/build/main.pdf