Compare commits
2 commits
40b14747fc
...
b48b7a0b1e
Author | SHA1 | Date | |
---|---|---|---|
|
b48b7a0b1e | ||
474f39097d |
2 changed files with 35 additions and 1 deletions
34
.gitea/workflows/docs.yml
Normal file
34
.gitea/workflows/docs.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
name: Build docs
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build-docs:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
# Edit here with the names of your latex file and directory (can use ".")
|
||||
DIR: docs
|
||||
FILE: projektdokumentation.tex
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install TeXlive
|
||||
env:
|
||||
ACCEPT_EULA: y
|
||||
DEBIAN_FRONTEND: noninteractive
|
||||
run: |
|
||||
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | sudo debconf-set-selections
|
||||
sudo apt-get update && sudo apt-get install texlive-lang-german texlive-xetex texlive texlive-publishers texlive-science latexmk cm-super ttf-mscorefonts-installer -y
|
||||
sudo fc-cache -f -v
|
||||
|
||||
- name: LaTeX compile
|
||||
working-directory: ${{ env.DIR }}
|
||||
run: latexmk -pdf -xelatex ${{ env.FILE }}
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: https://git.kjan.de/actions/upload-artifact@v3
|
||||
with:
|
||||
name: Doku
|
||||
path: docs/projektdokumentation.pdf
|
|
@ -77,7 +77,7 @@
|
|||
\centering
|
||||
\vspace*{2cm}
|
||||
|
||||
{\Huge\bfseries Casino Gaming Platform\par}
|
||||
{\Huge\bfseries Casino Gaming Platform GURWEABSOHN\par}
|
||||
\vspace{1.5cm}
|
||||
{\Large\itshape Projektdokumentation für die IHK-Abschlussprüfung\par}
|
||||
\vspace{2cm}
|
||||
|
|
Reference in a new issue