This repository has been archived by the owner on Nov 4, 2023. It is now read-only.
Bump teatimeguest/setup-texlive-action from 2 to 3 #20
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
# .github/workflows/build.yml | |
# GitHub Actions configuration file for latex | |
# See https://github.com/xu-cheng/latex-action for details | |
name: build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
run: | |
name: Generate pdf document | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Generate pdf document | |
uses: xu-cheng/latex-action@v2 | |
with: | |
root_file: biblio.tex | |
args: -file-line-error -halt-on-error -interaction=nonstopmode | |
pre_compile: tlmgr update --self && tlmgr update --all | |
- name: Store artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: biblio.pdf | |
if-no-files-found: error |