-
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (27 loc) · 852 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Install TeX Live
run: sudo apt update && sudo apt install biber latexmk texlive texlive-bibtex-extra texlive-lang-german texlive-latex-extra texlive-luatex
- name: Install the arial font
run: |
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections
sudo apt-get install ttf-mscorefonts-installer
- name: Set up Git repository
uses: actions/checkout@v4
- name: Compile LaTeX document
run: make build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Praesentation.pdf
path: out/Praesentation.pdf