Skip to content

example

example #16

Workflow file for this run

name: Build LaTeX document
on:
push:
branches:
- '*'
- '!main'
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v2
with:
root_file: main.tex
working_directory: article/
continue_on_error: true
- name: Save PDF as Artifact
uses: actions/upload-artifact@v3
with:
name: main
path: article/main.pdf