Alembic/.github/workflows/LaTeXcompile.yml
2021-07-14 15:02:35 +02:00

24 lines
544 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: Update Readme
run: |
ls
cd $GITHUB_WORKSPACE/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: '*'