From 769691497ff2599fbf3dad5aa7289ce45aa1f970 Mon Sep 17 00:00:00 2001 From: QuirinEcker Date: Tue, 8 Feb 2022 13:45:54 +0100 Subject: [PATCH] now using action for building --- .github/workflows/cd.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index 4f3939c..3d3e950 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -21,11 +21,16 @@ jobs: - name: Checkout 🛎 uses: actions/checkout@master - - name: Install TexLive + - name: Install TexLive ✅ run: sudo apt install texlive-full - name: Build thesis ⚙️ - run: pdflatex --output-directory=./out thesis.tex + uses: repaction/texlive@main + with: + root_file: thesis.tex + + - name: Prepare files 🗄 + run: ️️mkdir out && cp main.pdf out/index.pdf - name: Deploy application 🚀 uses: JamesIves/github-pages-deploy-action@releases/v3