diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index dc78253..dde8fda 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -9,21 +9,17 @@ on: jobs: build-pdf: runs-on: ubuntu-latest + container: texlive/texlive:latest steps: - name: Checkout repository uses: actions/checkout@v4 - - - name: Install TeX Live - run: | - sudo apt-get update - sudo apt-get install -y texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-bibtex-extra biber - name: Build PDF run: make pdf - name: Upload PDF artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: curriculum-vitae path: main.pdf