Alembic/.github/workflows/LaTeXcompile.yml

22 lines
511 B
YAML
Raw Normal View History

2021-07-14 12:28:06 +02:00
name: Build LaTeX document
2021-07-14 13:10:28 +02:00
on:
push:
paths:
- 'Alembic.tex'
2021-07-14 12:28:06 +02:00
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: Alembic.tex
2021-07-14 12:38:38 +02:00
- name: Commit changes
uses: EndBug/add-and-commit@v7
with:
author_name: LaTexCompiler
message: 'Compiled LaTeX into PDF'
add: '*.pdf'