Merge pull request #26 from boegel/fixes_tweaks #98
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
# 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 |