sync per pod 0.99.16 #1432
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: Compila OBSS ENG | |
on: [push,workflow_dispatch] | |
jobs: | |
build_latex: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v2 | |
- name: Compile LaTeX document | |
uses: xu-cheng/latex-action@v2 | |
with: | |
root_file: "OBSS-eng-v3.tex" | |
latexmk_use_xelatex: true | |
working_directory: ./OBSS | |
- name: Upload pdf | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "OBSS - Old Bell School System" | |
path: "./OBSS/OBSS-eng-v3.pdf" | |