From 2d59892bb2a6d3c3f61e10982b3f24c3571d8162 Mon Sep 17 00:00:00 2001 From: lukas Date: Thu, 26 Sep 2024 11:51:52 +0000 Subject: [PATCH] invoke container manually --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f3272be..05a9736 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,10 +6,10 @@ jobs: steps: - name: Set up Git repository uses: actions/checkout@v4 - - name: Compile LaTeX document - uses: xu-cheng/latex-action@v3 - with: - root_file: src/main.tex + - name: Build LaTeX Document + run: | + docker run --rm -v ${{ github.workspace }}:/workdir -w /workdir ghcr.io/xu-cheng/texlive-full:latest latexmk -pdf -xelatex -shell-escape src/main.tex + - name: Upload PDF file uses: actions/upload-artifact@v4 with: