From 819d454332fbb3497fc2372c84aa6ac3e6cf4c0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=A8=D0=B5?= =?UTF-8?q?=D0=BF=D0=B5=D0=BB=D0=B5=D0=B2?= Date: Thu, 28 Dec 2023 20:45:15 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e0c94c8..1f8f87a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,15 +5,21 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up Git repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 + - name: Create resources folder + run: mkdir -p tikz/resource - name: Compile LaTeX document uses: xu-cheng/latex-action@v3 with: + scheme: full root_file: astro-notebook.tex latexmk_use_xelatex: true latexmk_shell_escape: true + args: -pdf -file-line-error -halt-on-error -interaction=nonstopmode - name: Upload PDF file uses: actions/upload-artifact@v3 with: name: PDF path: astro-notebook.pdf + +