initial draft for CVMFS ISC'24 tutorial submission #6
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 paper | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@f1ca82cbed861b3534e2997dd584944f55b884ed | |
with: | |
work_in_root_file_dir: isc24/EESSI/ | |
root_file: main.tex | |
args: "-output-directory=build -pdf" | |
latexmk_shell_escape: true | |
- name: Store produce PDFs | |
uses: actions/upload-artifact@v2 | |
with: | |
name: EasyBuild-ISC-tutorial | |
path: ./build/main.pdf |