Skip to content

Update README.md (#831) #92

Update README.md (#831)

Update README.md (#831) #92

Workflow file for this run

name: Build LaTeX document
on:
push:
paths:
- 'LPPC/Plugins/topsky/Documentation/Latex/**'
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: TOPLIS Manual.tex
working_directory: LPPC/Plugins/topsky/Documentation/Latex/TOPLIS
- name: Move PDF
uses: canastro/copy-file-action@master
with:
source: "./LPPC/Plugins/topsky/Documentation/Latex/TOPLIS/TOPLIS Manual.pdf"
target: "./LPPC/TOPLIS Manual.pdf"
- name: Add & Commit PDF
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: 'Update TOPLIS Manual'
add: '*.pdf'
cwd: './LPPC/'