You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Compile LateX
v1.0.2
This action compiles latex files using Tectonic, which automatically downloads necessary dependencies, and compiles to pdf.
Required Path of tex, xtx file to compile.
Pushes a Compiled PDF file parallel to the tex, xtx file.
on: [push]
jobs:
latex-job:
runs-on: ubuntu-latest
name: A job to Compile Latex file
steps:
- uses: actions/checkout@v1
- name: Compilation
uses: vinay0410/tectonic-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tex_path: 'dir/file.tex'