Alembic/.github/workflows/LaTeXcompile.yml
2021-07-14 14:48:47 +02:00

27 lines
636 B
YAML

name: Build LaTeX document
on:
push:
paths:
- 'Alembic.tex'
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
- name: Update Readme
run: |
cd buildtols
php buildreadme.php
cd ../
- name: Commit changes
uses: EndBug/add-and-commit@v7
with:
author_name: LaTexCompiler
message: 'Compiled LaTeX into PDF, updated README'
add: '*'