Skip to content

Workflow file for this run

name: Documentation making
on: [push]
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@v3
with:
root_file: docs/stitch-documentation.tex
- name: Upload PDF file
run: mv stitch-documentation.pdf docs/. git add docs/stitch-documentation.pdf && git commit -m "[DOCS] Make docs." && git push
# praying