This is a fork from xu-cheng/texlive-action.
GitHub Action to run arbitrary commands in a TeXLive environment.
It comes with one flavor, full
. The full
action has all TeXLive packages installed.
The base image is Ubuntu 20.04.
See the dockerfile for the scripts to build the respective docker images.
This action is suitable to run arbitrary commands in a LaTeX environment.
run
: Arbitrary bash codes to be executed.
-
Run commands in a full TeXLive environment.
on: [push] jobs: build_latex: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: SadPencil/texlive-action/full@v4 with: run: | apt-get update apt-get install make make
MIT